/* ================================================
   HERO SECTION
   ================================================ */

.hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(30, 15, 10, 0.55) 0%,
        rgba(30, 15, 10, 0.35) 50%,
        rgba(30, 15, 10, 0.65) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
    animation: heroFadeIn 1.2s ease forwards;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo-container {
    margin-bottom: 24px;
}

.hero-logo-container svg {
    width: 100%;
    max-width: 460px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--cream-dark);
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.06em;
    margin-bottom: 40px;
    opacity: 0;
    animation: heroFadeIn 1s ease 0.4s forwards;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: heroFadeIn 1s ease 0.7s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--cream-dark);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0;
    animation: heroFadeIn 1s ease 1s forwards;
}

.hero-scroll .scroll-line {
    width: 1px;
    height: 40px;
    background: var(--cream-dark);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ================================================
   ABOUT SECTION
   ================================================ */

.about {
    background: var(--cream-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative;
}

.about-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-img:first-child {
    grid-column: 1 / -1;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about-img:hover img {
    transform: scale(1.03);
}

.about-text h2 {
    margin-bottom: 8px;
}

.about-text .section-divider {
    margin: 16px 0 24px;
}

.about-text p {
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.about-text p:last-of-type {
    margin-bottom: 32px;
}

.about-features {
    display: flex;
    gap: 32px;
    margin-top: 32px;
}

.about-feature {
    text-align: center;
    flex: 1;
}

.about-feature .feature-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--burgundy);
    line-height: 1;
    margin-bottom: 4px;
}

.about-feature .feature-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ================================================
   GALLERY / SLIDESHOW
   ================================================ */

.gallery {
    background: var(--burgundy-dark);
    padding: 100px 0;
    overflow: hidden;
}

.gallery .section-title {
    color: var(--cream);
}

.gallery .section-subtitle {
    color: var(--cream-dark);
}

.gallery .section-divider {
    background: var(--gold);
}

.gallery-slider {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    gap: 20px;
    padding: 0 calc((100vw - 800px) / 2);
}

.gallery-slide {
    flex: 0 0 800px;
    max-width: 90vw;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.gallery-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.gallery-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 30px 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: var(--cream);
}

.gallery-slide-caption h3 {
    color: var(--cream);
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.gallery-slide-caption p {
    color: var(--cream-dark);
    font-size: 0.95rem;
}

.gallery-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.gallery-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.gallery-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.gallery-btn svg {
    width: 20px;
    height: 20px;
}

.gallery-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
}

.gallery-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* ================================================
   MENU CTA SECTION
   ================================================ */

.menu-cta {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.menu-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.menu-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(90, 26, 26, 0.85);
}

.menu-cta .container {
    position: relative;
    z-index: 2;
}

.menu-cta h2 {
    color: var(--cream);
    margin-bottom: 16px;
}

.menu-cta p {
    color: var(--cream-dark);
    font-size: 1.15rem;
    max-width: 500px;
    margin: 0 auto 40px;
    font-family: var(--font-heading);
    font-style: italic;
}

.menu-cta .section-divider {
    background: var(--gold);
    margin-bottom: 24px;
}

/* ================================================
   HOURS SECTION
   ================================================ */

.hours {
    background: var(--cream);
}

.hours-wrapper {
    max-width: 560px;
    margin: 0 auto;
    background: var(--cream-light);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--cream-dark);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 14px 0;
    border-bottom: 1px solid var(--cream-dark);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.hours-time {
    font-size: 0.95rem;
    color: var(--text-medium);
    text-align: right;
    line-height: 1.6;
}

.hours-time.closed {
    color: var(--burgundy);
    font-weight: 600;
    font-style: italic;
}

.hours-today {
    background: var(--burgundy);
    color: var(--cream) !important;
    border-radius: var(--radius-md);
    padding: 14px 16px !important;
    margin: -1px -8px;
    border-bottom-color: transparent !important;
}

.hours-today .hours-day,
.hours-today .hours-time {
    color: var(--cream);
}

.hours-note {
    text-align: center;
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* ================================================
   LOCATION / MAP SECTION
   ================================================ */

.location {
    background: var(--cream-light);
    padding-bottom: 0;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.location-info h3 {
    margin-bottom: 24px;
}

.location-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.location-detail svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--burgundy);
    margin-top: 2px;
}

.location-detail .detail-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 4px;
}

.location-detail .detail-value {
    font-size: 1.05rem;
    color: var(--text-dark);
}

.location-detail .detail-value a {
    color: var(--burgundy);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition-fast);
}

.location-detail .detail-value a:hover {
    border-bottom-color: var(--burgundy);
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 400px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.location-full-map {
    margin-top: 80px;
    display: none;
}

.location-full-map iframe {
    width: 100%;
    height: 300px;
    border: 0;
}

/* ================================================
   FOOTER
   ================================================ */

.footer {
    background: var(--burgundy-dark);
    color: var(--cream-dark);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .footer-logo {
    font-family: var(--font-logo);
    font-size: 1.6rem;
    color: var(--cream);
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    color: var(--cream-dark);
    font-size: 0.95rem;
    opacity: 0.8;
    max-width: 320px;
}

.footer h4 {
    color: var(--cream);
    font-size: 1.1rem;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.footer-links a {
    display: block;
    color: var(--cream-dark);
    opacity: 0.7;
    font-size: 0.95rem;
    padding: 6px 0;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold-light);
    transform: translateX(4px);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

.footer-bottom a {
    color: var(--gold-light);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ================================================
   SCROLL ANIMATIONS
   ================================================ */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
