/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #282A3A;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.main-header {
    background-color: #3D140D;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    flex: 0 0 auto;
}

.brand-text {
    text-decoration: none;
    display: inline-block;
}

.brand-name {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #FFFF00, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    font-style: italic;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 0, 0.3));
}

.brand-text:hover .brand-name {
    letter-spacing: 2px;
    filter: drop-shadow(0 2px 12px rgba(255, 255, 0, 0.5));
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

.main-nav {
    flex: 1 1 auto;
}

.nav-list {
    display: flex;
    justify-content: flex-end;
    list-style: none;
}

.nav-item {
    margin-left: 5px;
}

.nav-link {
    display: block;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #FFFF00;
    background-color: rgba(255, 255, 0, 0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background-color: #FFFF00;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(61, 20, 13, 0.7) 0%, rgba(40, 42, 58, 0.75) 50%, rgba(61, 20, 13, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    color: #fff;
}

.hero-title {
    font-size: clamp(28px, 6vw, 52px);
    color: #FFFF00 !important;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.3;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    animation: slideDown 0.8s ease-out;
}

.hero-text {
    max-width: 900px;
    margin: 0 auto 30px;
}

.hero-text p {
    font-size: clamp(14px, 2.5vw, 18px);
    line-height: 1.8;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease-out 0.3s forwards;
    opacity: 0;
}

.hero-cta {
    display: flex;
    gap: clamp(10px, 2vw, 20px);
    justify-content: center;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease-out 0.5s forwards;
    opacity: 0;
}

.cta-button {
    display: inline-block;
    padding: clamp(10px, 1.5vw, 14px) clamp(20px, 3vw, 40px);
    font-size: clamp(12px, 2.5vw, 16px);
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.cta-button.primary {
    background: linear-gradient(135deg, #FFFF00, #FFCC00);
    color: #000;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 0, 0.4);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #FFFF00;
    border-color: #FFFF00;
}

.cta-button.secondary:hover {
    background: #FFFF00;
    color: #3D140D;
    transform: translateY(-3px);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Links */
.highlight-link {
    color: #FFCC00;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.highlight-link:hover {
    color: #FFFF00;
    text-decoration: underline;
}

/* Mobile Responsive Hero */
@media (max-width: 1024px) {
    .brand-name {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .brand-name {
        font-size: 20px;
        letter-spacing: 0.5px;
    }
    
    .nav-link {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .hero-cta {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 18px;
    }
    
    .nav-list {
        flex-direction: column;
    }
    
    .nav-item {
        margin-left: 0;
        margin-bottom: 10px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
}

/* Main Content */
.main-content {
    padding-bottom: 60px;
}

.content-block {
    margin-bottom: 40px;
}

.content-block p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

/* Section Headers */
.section-header {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #FFCC00;
}

.section-header h3 {
    font-size: 28px;
    color: #FFCC00 !important;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

/* Gallery Section */
.gallery-section {
    margin-bottom: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.gallery-item {
    background-color: #213f32;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.image-container {
    position: relative;
    overflow: hidden;
    background-color: #1a1a1a;
    aspect-ratio: 4/6;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.watermark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.7);
    font-size: 30px;
    font-weight: bold;
    pointer-events: none;
    z-index: 2;
    opacity: 0.6;
    user-select: none;
}

.call-button {
    padding: 15px;
    text-align: center;
    background-color: #11211a;
}

.call-link {
    display: inline-block;
    background-color: #11211a;
    color: #fff;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
}

.call-link:hover {
    background-color: #ffde00;
    color: #000;
}

.call-link i {
    margin-right: 8px;
}

.gallery-info {
    padding: 20px 15px;
    text-align: center;
}

.gallery-title {
    font-size: 20px;
    color: #fff;
    margin-bottom: 5px;
    font-weight: 600;
}

.gallery-category {
    font-size: 16px;
    color: #FFCC00;
    font-weight: 500;
}

/* Info Section */
.info-section {
    margin-bottom: 60px;
}

.feature-block {
    background-color: rgba(61, 20, 13, 0.2);
    border-left: 4px solid #FFCC00;
    padding: 25px;
    border-radius: 0 8px 8px 0;
    margin-top: 30px;
}

.feature-block h6 {
    font-size: 22px;
    color: #fff !important;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.feature-block p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Footer */
.main-footer {
    background-color: #3D231D;
    margin-top: 60px;
}

.footer-top {
    padding: 50px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column {
    margin-bottom: 20px;
}

.footer-title {
    font-size: 24px;
    color: #FFFF00 !important;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #7A3525;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 3px 0;
}

.footer-links a:hover {
    color: #ffb200;
    padding-left: 8px;
}

.footer-bottom {
    background-color: #7A3525;
    padding: 20px 0;
    border-top: 1px solid #313131;
}

.copyright {
    text-align: center;
    font-size: 14px;
    color: #fff;
    margin: 0;
}

.copyright-link,
.terms-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright-link:hover,
.terms-link:hover {
    color: #FFFF00;
    text-decoration: underline;
}

/* Fixed Call Buttons */
.fixed-call-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 9999;
}

.call-button-left,
.call-button-right {
    flex: 1;
}

.call-button-link {
    display: block;
    padding: 15px 0;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.call-button-left .call-button-link {
    background-color: #291B73;
}

.call-button-right .call-button-link {
    background-color: #9BB41A;
}

.call-button-left .call-button-link:hover {
    background-color: #1f1357;
}

.call-button-right .call-button-link:hover {
    background-color: #829a17;
}

.call-button-link i {
    margin-right: 10px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 700;
}

h1 {
    font-size: 38px;
    color: #FFFF00 !important;
}

h2 {
    font-size: 32px;
    color: #FFFF00 !important;
}

h3 {
    font-size: 28px;
    color: #FFCC00 !important;
}

h4 {
    font-size: 24px;
    color: #fff;
}

h5 {
    font-size: 20px;
    color: #fff;
}

h6 {
    font-size: 18px;
    color: #fff !important;
}

p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
    color: #fff;
}

a {
    color: #FFCC00;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #FFFF00;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .container {
        max-width: 960px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #3D140D;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
        z-index: 999;
    }
    
    .main-nav.mobile-active {
        max-height: 400px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    
    .nav-list {
        flex-direction: column;
        padding: 20px 0;
    }
    
    .nav-item {
        margin: 0;
        width: 100%;
    }
    
    .nav-link {
        padding: 15px 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0;
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    .header-content {
        flex-wrap: wrap;
    }
    
    .logo-container {
        flex: 1;
    }
}

@media (max-width: 767px) {
    .container {
        max-width: 720px;
    }
    
    .hero-section {
        padding: 40px 0 30px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .section-header h3 {
        font-size: 24px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-title {
        font-size: 22px;
    }
    
    .fixed-call-buttons {
        flex-direction: column;
    }
    
    .call-button-link {
        padding: 12px 0;
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .content-block p {
        font-size: 16px;
        text-align: left;
    }
    
    .feature-block {
        padding: 20px 15px;
    }
    
    .feature-block h6 {
        font-size: 20px;
    }
    
    .copyright {
        font-size: 13px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* Animation for elements */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.gallery-item {
    animation: fadeIn 0.5s ease forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }

/* Page Titles */
.page-title {
    font-size: clamp(28px, 6vw, 48px);
    color: #FFFF00 !important;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.section-title {
    font-size: clamp(20px, 4vw, 28px);
    color: #FFFF00;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Services List */
.services-list {
    list-style: none;
    margin: 20px 0;
    padding-left: 0;
}

.services-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.8;
}

.services-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FFFF00;
    font-weight: 700;
    font-size: 18px;
}

/* Rates Table */
.rates-table {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.rates-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #213f32;
}

.rates-table th {
    background: linear-gradient(135deg, #FFFF00, #FFD700);
    color: #000;
    padding: 15px;
    text-align: left;
    font-weight: 700;
    font-size: 16px;
}

.rates-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 0, 0.1);
    font-size: 15px;
}

.rates-table tr:hover {
    background-color: rgba(255, 255, 0, 0.05);
}

.rates-table tr:last-child td {
    border-bottom: none;
}

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.contact-item {
    background-color: #213f32;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 255, 0, 0.2);
}

.contact-item h3 {
    color: #FFFF00;
    font-size: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-item p {
    font-size: 14px;
    margin: 10px 0;
    color: #ddd;
}

.contact-item a {
    margin-top: 15px;
    display: inline-block;
}

/* Booking Steps */
.booking-steps {
    list-style: none;
    margin: 30px 0;
    padding: 0;
    counter-reset: step-counter;
}

.booking-steps li {
    counter-increment: step-counter;
    padding: 20px;
    margin: 15px 0;
    background-color: #213f32;
    border-left: 4px solid #FFFF00;
    border-radius: 4px;
    font-size: 16px;
    line-height: 1.8;
    position: relative;
}

.booking-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: #FFFF00;
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        margin-top: 20px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .rates-table {
        margin: 20px -15px;
    }
}