@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Roboto+Condensed:wght@700;900&display=swap');

:root {
    --gold: #D4AF37;
    --gold-dark: #8c732a;
    --gold-light: #f2d48c;
    --gold-gradient: linear-gradient(135deg, #A68A2D, #D4AF37, #F2D48C);
    --bg: #ffffff;
    --bg-soft: #fcfcfc;
    --surface: #ffffff;
    --border: rgba(0, 0, 0, 0.05);
    --text: #111111;
    --text-muted: #666666;
    --white: #ffffff;
    --black: #000000;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(212, 175, 55, 0.2);
    --transition-slow: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-gold: 0 15px 40px rgba(212, 175, 55, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body.no-js .reveal-item {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .heading-font {
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-soft);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

/* Reusable Components */

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

.btn {
    display: inline-block;
    padding: 18px 40px;
    background: var(--gold-gradient);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
    border-radius: 2px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
    filter: brightness(1.1);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.section-title .divider {
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 0 auto;
}

/* Glass Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    padding: 20px 0;
    transition: var(--transition);
}

.glass-nav.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 5px;
}

.nav-logo {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

.nav-logo-text {
    font-size: 1rem;
    font-weight: 900;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo:hover .nav-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

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

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

.btn-sm {
    padding: 12px 25px;
    background: var(--gold);
    color: var(--white);
    border: none;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
}

/* Hero Section */
header {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255,255,255,0.3), rgba(255,255,255,0.5)), url('hero.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: scale(1.15);
    filter: grayscale(1);
    transition: transform 10s ease-out, filter 2s ease-out;
}

.revealed .hero-bg {
    transform: scale(1);
    filter: grayscale(0);
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--text);
    text-shadow: 0 2px 10px rgba(255,255,255,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Services Section */
#services {
    padding: 100px 0;
    background: var(--bg-soft);
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 pictures per row */
    gap: 20px;
}

.gallery-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.service-card {
    background: var(--surface);
    padding: 40px;
    border-radius: 4px;
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: center;
    position: relative;
    box-shadow: var(--shadow);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-card i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.service-card .price {
    font-size: 2rem;
    color: var(--gold);
    font-weight: 700;
    margin: 20px 0;
    display: block;
}

/* Gallery Item & Overlay Styling */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none; /* Allow hovering through to the image */
    z-index: 2;
    padding: 20px;
    text-align: center;
}

.gallery-overlay h3 {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: var(--transition-slow);
}

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

.gallery-item:hover .gallery-overlay h3 {
    transform: translateY(0);
}

/* Global Reveal System */
.reveal-content, .reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.reveal-item {
    transform: translateY(20px);
}

.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Staggered Delay Helpers */
.reveal-item:nth-child(2) { transition-delay: 0.1s; }
.reveal-item:nth-child(3) { transition-delay: 0.2s; }
.reveal-item:nth-child(4) { transition-delay: 0.3s; }
.reveal-item:nth-child(5) { transition-delay: 0.4s; }
.reveal-item:nth-child(6) { transition-delay: 0.5s; }

/* Section Title Reveal */
.section-title.reveal-content {
    transition-delay: 0s;
}

/* Gallery Hover Polish */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1); /* Start slightly zoomed in */
    filter: grayscale(1);
    transition: filter 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
    transform: scale(1.05); /* Cinematic zoom out, but keep some zoom */
    filter: grayscale(0);
}

/* Mobile/Touch Color Reveal - Using scroll as hover substitute */
@media (max-width: 900px) {
    .gallery-item.revealed img {
        filter: grayscale(0);
    }
}

/* No-JS Fallback */
.no-js .reveal-content, 
.no-js .reveal-item {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}

/* Team Section */
#team {
    padding: 100px 0;
    background: var(--bg-soft);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

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

.team-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 4px solid var(--gold);
    box-shadow: var(--shadow);
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.1);
    transition: filter 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .team-img img {
    filter: grayscale(0) contrast(1.1);
    transform: scale(1.1);
}

.team-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.team-card p {
    color: var(--gold);
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Booking Section */
#booking {
    padding: 100px 0;
}

.booking-container {
    max-width: 900px;
    background: var(--surface);
    padding: 60px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    border: 1px solid var(--border);
}

.booking-calendar-wrapper {
    padding-right: 20px;
    border-right: 1px solid var(--border);
}

.booking-form-wrapper h3 {
    margin-bottom: 25px;
    color: var(--gold);
}

form .form-group {
    margin-bottom: 20px;
}

form label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

form input, form select {
    width: 100%;
    padding: 12px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 4px;
    outline: none;
    transition: var(--transition);
}

form input:focus {
    border-color: var(--gold);
    background: var(--white);
}

/* Custom Calendar Logic Styles */
.calendar {
    width: 100%;
}

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

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    gap: 5px;
}

.day-name {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 10px;
}

.day-num {
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    color: var(--text);
}

.day-num:hover:not(.empty) {
    background: var(--gold);
    color: var(--white);
}

.day-num.selected {
    background: var(--gold);
    color: var(--white);
}

.day-num.empty {
    cursor: default;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.time-slot {
    padding: 10px;
    background: var(--bg-soft);
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.time-slot:hover {
     background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.time-slot.selected {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

/* Footer */
footer {
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid var(--border);
    background: var(--bg-soft);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-logo-img {
    height: 120px;
    width: auto;
}

.footer-logo-text {
    font-size: 2.5rem;
    color: var(--text);
    font-weight: 900;
}

.footer-info p {
    margin-bottom: 10px;
    color: var(--text-muted);
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    color: var(--text);
    font-size: 1.5rem;
    margin: 0 15px;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--gold);
}

/* Responsive */
@media (max-width: 900px) {
    .container {
        padding: 0 30px;
    }
    .logo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .booking-container {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }
    .booking-calendar-wrapper {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-right: 0;
        padding-bottom: 40px;
    }
    
    /* Mobile color transitions for better mobile UX */
    .team-card.revealed .team-img img {
        filter: grayscale(0) contrast(1.1);
    }
}
