:root {
    --primary: #cba052; /* Elegant Gold */
    --primary-hover: #b38944;
    --bg-dark: #121212;
    --bg-light: #1e1e1e;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(203, 160, 82, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 1rem 5%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.6);
    background: rgba(18, 18, 18, 0.98);
}

.logo-link {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 60px; /* Adjust based on logo proportions */
    border-radius: 50%; /* Since the logo is round */
    border: 2px solid var(--primary);
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Buttons */
.btn {
    padding: 0.9rem 2rem;
    border-radius: 2px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-dark);
    border: 1px solid var(--primary);
    box-shadow: 0 4px 15px rgba(203, 160, 82, 0.2);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(203, 160, 82, 0.4);
}

/* Nav Actions & Mobile Menu */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px; /* Offset for navbar */
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    padding: 0 5%;
    gap: 50px;
    z-index: 10;
}

.hero-content {
    flex: 1;
    text-align: left;
}

.hero-content h1 {
    font-size: 4.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.3rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-img {
    max-width: 100%;
    height: auto;
    max-height: 70vh;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    border: 2px solid rgba(203, 160, 82, 0.3);
    object-fit: cover;
}

/* Sections General */
section {
    padding: 120px 5%;
}

.section-title {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.text-center {
    text-align: center;
}

.accent-line {
    width: 80px;
    height: 2px;
    background: var(--primary);
    margin: 25px 0 40px 0;
}

.accent-line.center {
    margin: 25px auto 40px auto;
}

/* About Section */
.about {
    background: var(--bg-light);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    z-index: 0;
    opacity: 0.5;
}

.about-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    position: relative;
    z-index: 1;
    object-fit: cover;
}


/* Gallery Section */
.gallery {
    background: #161616;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 60px; /* Space for the navigation arrows */
}

.carousel-viewport {
    overflow: hidden;
    width: 100%;
    border-radius: 8px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 20px;
}

.carousel-slide {
    flex: 0 0 calc(33.333% - 13.333px); /* 3 slides on desktop */
    min-width: 0;
}

.gallery-item {
    height: 380px; /* Slightly taller to accommodate portrait aspect ratio */
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid var(--primary);
    color: var(--primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-control:hover {
    background: var(--primary);
    color: var(--bg-dark);
    box-shadow: 0 0 15px rgba(203, 160, 82, 0.4);
}

.carousel-control.prev {
    left: 0;
}

.carousel-control.next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.3);
    box-shadow: 0 0 8px var(--primary);
}

/* Responsive adjustments for slides */
@media (max-width: 900px) {
    .carousel-slide {
        flex: 0 0 calc(50% - 10px); /* 2 slides on tablet */
    }
    .carousel-wrapper {
        padding: 0 50px;
    }
}

@media (max-width: 600px) {
    .carousel-slide {
        flex: 0 0 100%; /* 1 slide on mobile */
    }
    .carousel-wrapper {
        padding: 0 40px;
    }
    .gallery-item {
        height: 320px;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.7);
}

.gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Locations Section */
.locations {
    background: var(--bg-dark);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.location-card {
    display: block;
    background: var(--bg-light);
    padding: 50px 40px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.location-card:hover {
    transform: translateY(-15px);
    border-color: rgba(203, 160, 82, 0.5);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.card-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.location-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: white;
}

.location-card p {
    color: var(--text-muted);
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.schedule {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.map-link {
    margin-top: 25px;
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.map-link i {
    transition: transform 0.3s ease;
}

.location-card:hover .map-link {
    color: var(--primary-hover);
}

.location-card:hover .map-link i {
    transform: translateX(5px);
}

/* Reviews Section */
.reviews {
    background: var(--bg-light);
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--bg-dark);
    padding: 35px;
    border-radius: 8px;
    border: 1px solid rgba(203, 160, 82, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.stars {
    color: var(--primary);
    font-size: 0.9rem;
    display: flex;
    gap: 2px;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.review-text {
    font-style: italic;
    color: #e0e0e0;
    margin-bottom: 25px;
    line-height: 1.7;
    flex-grow: 1;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-info h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 2px;
}

.platform {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.platform i {
    color: #4285F4; /* Google Blue */
    margin-right: 5px;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Footer */
footer {
    background: #080808;
    text-align: center;
    padding: 60px 20px;
    border-top: 1px solid rgba(203, 160, 82, 0.1);
}

.footer-logo-img {
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 2px solid rgba(203, 160, 82, 0.5);
}

.social-links {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.8rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

footer p {
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
    font-family: var(--font-body);
}

/* Animations Trigger Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.slide-up.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-image-container {
        justify-content: center;
        margin-top: 30px;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }
    
    .accent-line {
        margin: 25px auto 40px auto;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(18, 18, 18, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .hide-mobile {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    section {
        padding: 80px 5%;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}
