/* -------------------------  */
/* CUSTOM PROPERTIES */
/* -------------------------  */

:root {
    --clr-green: #2C3B2D;
    --clr-green-light: #3a4e3b;
    --clr-cream: #F5F0E8;
    --clr-amber: #C8973A;
    --clr-white: #ffffff;
    --clr-text: #e8e3d8;
    --clr-muted: rgba(232, 227, 216, 0.55);

    --ff-display: 'Arvo', Georgia, serif;
    --ff-body: 'Baloo Paaji 2', sans-serif;

    --container-width: 1100px;
    --section-padding: 100px;
}

/* -------------------------  */
/* RESET */
/* -------------------------  */

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--ff-body);
    background: var(--clr-green);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; object-fit: cover; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }

@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* -------------------------  */
/* UTILITY */
/* -------------------------  */

.container {
    max-width: var(--container-width);
    margin-inline: auto;
    padding-inline: 2rem;
}

.section {
    padding: var(--section-padding) 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.section-title {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--clr-cream);
    margin-bottom: 2.5rem;
}

.section-title.centered { text-align: center; }

.accent { color: var(--clr-amber); font-style: italic; }

.body-text {
    font-size: 1rem;
    color: var(--clr-muted);
    margin-bottom: 1.25rem;
    max-width: 480px;
}

/* -------------------------  */
/* BUTTONS */
/* -------------------------  */

.btn {
    display: inline-block;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.5px;
}

.btn--outline {
    border: 2px solid var(--clr-cream);
    color: var(--clr-cream);
    background: transparent;
    margin-top: 1.5rem;
}

.btn--outline:hover {
    background: var(--clr-cream);
    color: var(--clr-green);
}

.btn--filled {
    border: none;
    background: var(--clr-cream);
    color: var(--clr-green);
    font-weight: 700;
    align-self: flex-end;
    white-space: nowrap;
}

.btn--filled:hover {
    background: var(--clr-amber);
    color: var(--clr-white);
}

/* -------------------------  */
/* NAVBAR */
/* -------------------------  */

#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 48px;
    transition: background 0.3s, padding 0.3s;
}

#navbar.scrolled {
    background: rgba(44, 59, 45, 0.97);
    padding: 14px 48px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--ff-display);
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--clr-cream);
}

.logo-icon { font-size: 1rem; opacity: 0.85; }
.logo-text sub { font-size: 0.55rem; vertical-align: sub; opacity: 0.6; }

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

.nav-links a {
    font-family: var(--ff-display);
    font-size: 1rem;
    color: var(--clr-cream);
    opacity: 0.8;
    transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 1; }

.nav-cta {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 22px;
    border: 2px solid var(--clr-cream);
    border-radius: 8px;
    color: var(--clr-cream);
    transition: all 0.2s;
}

.nav-cta:hover {
    background: var(--clr-cream);
    color: var(--clr-green);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-cream);
    transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--clr-green);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
}

.mobile-menu.open { transform: translateX(0); }

.mobile-link {
    font-family: var(--ff-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--clr-cream);
    opacity: 0.85;
}

.mobile-link:hover { color: var(--clr-amber); opacity: 1; }

/* -------------------------  */
/* HERO */
/* -------------------------  */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 2rem 80px;
    gap: 2rem;
}

.hero-title {
    font-family: var(--ff-display);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 900;
    color: var(--clr-cream);
    line-height: 1.05;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    width: 100%;
    max-width: 900px;
}

.hero-img-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-img {
    overflow: hidden;
    border-radius: 8px;
}

.hero-img--tall { grid-row: span 2; }
.hero-img--tall img { height: 100%; }

.hero-img img {
    width: 100%;
    height: 220px;
    transition: transform 0.5s ease;
}

.hero-img--tall img { height: 100%; min-height: 450px; }

.hero-img:hover img { transform: scale(1.04); }

/* Scroll hint */
.scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-body);
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--clr-muted);
    margin-top: 0.5rem;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--clr-muted), transparent);
    animation: scrollLine 1.8s ease infinite;
}

@keyframes scrollLine {
    0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
    49%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
    50%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* -------------------------  */
/* ABOUT */
/* -------------------------  */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
    transition: background 0.3s;
}

.value-card:hover { background: rgba(255,255,255,0.1); }

.value-card h3 {
    font-family: var(--ff-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-cream);
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--clr-muted);
    line-height: 1.6;
}

/* -------------------------  */
/* MENU */
/* -------------------------  */

.menu-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.menu-divider {
    width: 1px;
    background: rgba(255,255,255,0.15);
    align-self: stretch;
}

.menu-cat-title {
    font-family: var(--ff-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--clr-cream);
    margin-bottom: 1.25rem;
    font-style: italic;
}

.menu-hours {
    font-size: 0.85rem;
    color: var(--clr-amber);
    font-style: italic;
    font-family: var(--ff-body);
    margin-left: 0.5rem;
}

.menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--clr-muted);
    border-bottom: 1px dotted rgba(255,255,255,0.1);
    padding-bottom: 0.5rem;
}

.menu-list li span:last-child {
    color: var(--clr-cream);
    font-weight: 500;
    white-space: nowrap;
}

.menu-list small {
    font-size: 0.75rem;
    opacity: 0.7;
    display: block;
}

.menu-list--wide li { gap: 2rem; }

.menu-photo {
    margin-top: 1.5rem;
}

.menu-photo img {
    width: 100%;
    max-width: 200px;
    height: 160px;
    border-radius: 8px;
}

.menu-photo-caption {
    font-size: 0.75rem;
    color: var(--clr-muted);
    margin-top: 0.4rem;
    font-style: italic;
}

.menu-section-block {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.menu-cabinet {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.menu-cabinet-photo img {
    width: 100%;
    height: 320px;
    border-radius: 12px;
    object-fit: cover;
}

/* -------------------------  */
/* EVENTS */
/* -------------------------  */

.events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.events-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-card {
    background: var(--clr-cream);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    transition: transform 0.2s;
}

.event-card:hover { transform: translateX(6px); }

.event-card h3 {
    font-family: var(--ff-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-amber);
    margin-bottom: 0.25rem;
}

.event-card p {
    font-size: 0.875rem;
    color: var(--clr-green);
}

.events-photo {
    border-radius: 12px;
    overflow: hidden;
}

.events-photo img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
}

/* -------------------------  */
/* FIND US */
/* -------------------------  */

.findus-address {
    text-align: center;
    font-size: 1.05rem;
    color: var(--clr-cream);
    margin-bottom: 0.5rem;
}

.findus-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--clr-muted);
    margin-bottom: 3rem;
}

.findus-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.opening-hours h3 {
    font-family: var(--ff-display);
    font-size: 1.4rem;
    color: var(--clr-cream);
    margin-bottom: 1.25rem;
    font-style: italic;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.hours-table th {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-amber);
    padding: 0 0 0.75rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.hours-table td {
    padding: 0.65rem 0;
    font-size: 0.95rem;
    color: var(--clr-muted);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hours-table td:last-child { color: var(--clr-cream); }

.findus-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.findus-contact p {
    font-size: 0.9rem;
    color: var(--clr-muted);
}

.findus-map iframe {
    border-radius: 12px;
    height: 340px;
    filter: grayscale(30%) contrast(1.1);
}

/* -------------------------  */
/* BOOKINGS */
/* -------------------------  */

.bookings-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.bookings-pitch {
    font-family: var(--ff-display);
    font-size: 1.05rem;
    color: var(--clr-cream);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.bookings-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bookings-details p {
    font-size: 0.875rem;
    color: var(--clr-muted);
}

.bookings-details strong { color: var(--clr-cream); }

.booking-form {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-title {
    font-family: var(--ff-display);
    font-size: 1.4rem;
    color: var(--clr-amber);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 140px;
}

.form-group--small { flex: 0.6; }
.form-group--full { flex: 1; }

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--clr-cream);
    border: none;
    border-radius: 8px;
    font-family: var(--ff-body);
    font-size: 0.9rem;
    color: var(--clr-green);
    outline: none;
    transition: box-shadow 0.2s;
}

.form-group input::placeholder { color: rgba(44,59,45,0.5); }

.form-group input:focus {
    box-shadow: 0 0 0 2px var(--clr-amber);
}

.form-success {
    display: none;
    background: rgba(200, 151, 58, 0.15);
    border: 1px solid var(--clr-amber);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.875rem;
    color: var(--clr-amber);
    text-align: center;
}

/* -------------------------  */
/* FOOTER */
/* -------------------------  */

.footer {
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--ff-display);
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--clr-cream);
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--clr-muted);
}

.footer-credit {
    font-size: 0.8rem;
    color: var(--clr-muted);
}

.footer-credit strong { color: var(--clr-amber); }

/* -------------------------  */
/* ANIMATIONS */
/* -------------------------  */

.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

/* -------------------------  */
/* RESPONSIVE */
/* -------------------------  */

@media (max-width: 900px) {
    :root { --section-padding: 70px; }

    #navbar { padding: 16px 24px; }
    #navbar.scrolled { padding: 12px 24px; }
    .nav-links, .nav-cta { display: none; }
    .nav-hamburger { display: flex; }

    .hero { padding: 100px 1.5rem 60px; }
    .hero-grid { grid-template-columns: 1fr 1fr; }
    .hero-img--tall { display: none; }
    .hero-img-col { display: contents; }
    .hero-img img { height: 180px; }

    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .body-text { max-width: 100%; }

    .menu-row { grid-template-columns: 1fr; }
    .menu-divider { display: none; }

    .menu-cabinet { grid-template-columns: 1fr; }
    .menu-cabinet-photo { order: -1; }
    .menu-cabinet-photo img { height: 220px; }

    .events-grid { grid-template-columns: 1fr; }
    .events-photo { order: -1; }
    .events-photo img { height: 260px; }

    .findus-grid { grid-template-columns: 1fr; }
    .findus-map iframe { height: 260px; }

    .bookings-grid { grid-template-columns: 1fr; gap: 2rem; }
    .booking-form { padding: 1.5rem; }

    .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 540px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-img-col { display: flex; flex-direction: column; }
    .form-row { flex-direction: column; }
    .form-group--small { flex: 1; }
    .btn--filled { width: 100%; text-align: center; }
}
