/* ============================================
   BULLSEYE LOUNGE — Classic & Elegant
   Palette: Plum (#5D3A5A) + Amber (#D4A04A)
   Fonts: Playfair Display + Lato
   ============================================ */

/* ── Reset & Base ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --plum: #5D3A5A;
    --plum-deep: #3E2539;
    --plum-light: #7A4F76;
    --plum-muted: #9B6B94;
    --amber: #D4A04A;
    --amber-light: #E8C072;
    --amber-dark: #B8862E;
    --cream: #FAF6F0;
    --cream-dark: #F0E8DA;
    --charcoal: #2A2226;
    --text: #3D2E36;
    --text-light: #7A6572;
    --white: #FFFFFF;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Lato', system-ui, sans-serif;
    --shadow-sm: 0 2px 8px rgba(93, 58, 90, 0.08);
    --shadow-md: 0 8px 30px rgba(93, 58, 90, 0.12);
    --shadow-lg: 0 20px 60px rgba(93, 58, 90, 0.15);
    --radius: 8px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text);
    background-color: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* ── Typography ── */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber-dark);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--plum-deep);
    margin-bottom: 20px;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn--primary {
    background: var(--amber);
    color: var(--plum-deep);
    border-color: var(--amber);
}

.btn--primary:hover {
    background: var(--amber-light);
    border-color: var(--amber-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn--ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 246, 240, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(93, 58, 90, 0.08);
    transition: var(--transition);
}

.nav.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--plum-deep);
}

.nav__logo-icon {
    color: var(--amber-dark);
}

.nav__links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.03em;
    transition: var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber);
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--plum);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    background: var(--amber);
    color: var(--plum-deep);
    padding: 10px 22px;
    border-radius: var(--radius);
    font-weight: 600;
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: var(--amber-light);
    color: var(--plum-deep);
    transform: translateY(-1px);
}

/* Mobile toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--plum-deep);
    transition: var(--transition);
    border-radius: 2px;
}

.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav__overlay {
    display: none;
}

/* ── Hero Section ── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 72px;
}

.hero__split {
    display: flex;
    align-items: center;
}

.hero__split--text {
    background: var(--plum-deep);
    padding: 80px 60px;
}

.hero__content {
    max-width: 520px;
}

.hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 20px;
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
}

.hero__subheadline {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 440px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__split--image {
    position: relative;
    overflow: hidden;
}

.hero__image-wrapper {
    position: relative;
    height: 100%;
    min-height: 100vh;
}

.hero__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__image-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--plum-deep) 0%, transparent 30%);
    pointer-events: none;
}

/* ── About Section ── */
.about {
    padding: 120px 0;
    background: var(--cream);
}

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

.about__image-group {
    position: relative;
}

.about__image-main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__image-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about__image-small {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--cream);
}

.about__image-small img {
    width: 260px;
    height: 200px;
    object-fit: cover;
}

.about__content {
    padding: 20px 0;
}

.about__text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 20px;
}

.about__stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(93, 58, 90, 0.12);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat__number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--plum);
}

.stat__label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
}

/* ── Menu Section ── */
.menu {
    padding: 120px 0;
    background: var(--white);
}

.menu__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.menu__subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.menu__tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
}

.menu__tab {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 12px 28px;
    border: 2px solid rgba(93, 58, 90, 0.15);
    border-radius: var(--radius);
    background: transparent;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
}

.menu__tab:hover {
    border-color: var(--plum);
    color: var(--plum);
}

.menu__tab.active {
    background: var(--plum);
    border-color: var(--plum);
    color: var(--white);
}

.menu__panels {
    position: relative;
    min-height: 300px;
}

.menu__panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.menu__panel.active {
    display: block;
}

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

.menu__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.menu__item {
    padding: 24px 0;
    border-bottom: 1px solid rgba(93, 58, 90, 0.08);
}

.menu__item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
}

.menu__item-name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--plum-deep);
}

.menu__item-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ── Gallery Section ── */
.gallery {
    padding: 120px 0;
    background: var(--cream);
}

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

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 20px;
}

.gallery__item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item--large {
    grid-column: span 7;
    grid-row: span 2;
}

.gallery__item:nth-child(2) {
    grid-column: span 5;
}

.gallery__item:nth-child(3) {
    grid-column: span 5;
}

.gallery__item:nth-child(4) {
    grid-column: span 6;
}

.gallery__item:nth-child(5) {
    grid-column: span 6;
}

/* ── Visit Section ── */
.visit {
    padding: 120px 0;
    background: var(--plum-deep);
    color: var(--white);
}

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

.visit .section-eyebrow {
    color: var(--amber);
}

.visit .section-title {
    color: var(--white);
}

.visit__address {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-style: normal;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin: 32px 0;
}

.visit__icon {
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--amber);
}

.visit__hours {
    margin-bottom: 40px;
}

.visit__hours-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.visit__hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.95rem;
}

.visit__hours-row span:first-child {
    color: rgba(255, 255, 255, 0.6);
}

.visit__hours-row span:last-child {
    color: var(--amber-light);
    font-weight: 500;
}

.visit__phone {
    background: var(--amber);
    color: var(--plum-deep);
    border-color: var(--amber);
    font-size: 0.9rem;
    padding: 16px 32px;
}

.visit__phone:hover {
    background: var(--amber-light);
    border-color: var(--amber-light);
}

.visit__map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 450px;
}

/* ── Contact Section ── */
.contact {
    padding: 120px 0;
    background: var(--white);
}

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

.contact__text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 20px;
}

.contact__form-wrapper {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 48px;
    box-shadow: var(--shadow-sm);
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form__label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
}

.form__input {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    padding: 14px 16px;
    border: 1.5px solid rgba(93, 58, 90, 0.15);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--text);
    transition: var(--transition);
    outline: none;
    width: 100%;
}

.form__input:focus {
    border-color: var(--plum);
    box-shadow: 0 0 0 3px rgba(93, 58, 90, 0.08);
}

.form__input::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235D3A5A' stroke-width='2' aria-hidden='true'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

.form__note {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
}

.form__note a {
    color: var(--plum);
    font-weight: 600;
}

.form__note a:hover {
    color: var(--amber-dark);
}

.contact__success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
    gap: 16px;
}

.contact__success h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--plum-deep);
}

.contact__success p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ── Footer ── */
.footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.footer__logo-icon {
    color: var(--amber);
}

.footer__tagline {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.footer ul a {
    transition: var(--transition);
}

.footer ul a:hover {
    color: var(--amber);
}

.footer ul svg {
    flex-shrink: 0;
    color: var(--amber);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

/* ── Scroll Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero__split--text {
        padding: 60px 40px;
        min-height: auto;
    }

    .hero__split--image {
        display: none;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about__image-small {
        right: 0;
    }

    .visit__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact__inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav__links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(250, 246, 240, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        transform: translateX(100%);
        transition: var(--transition);
    }

    .nav__links.open {
        transform: translateX(0);
    }

    .nav__link {
        font-size: 1.1rem;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__overlay {
        display: block;
        position: fixed;
        inset: 0;
        top: 72px;
        background: rgba(0, 0, 0, 0.4);
        z-index: -1;
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .nav__overlay.active {
        opacity: 1;
        pointer-events: all;
    }

    .hero__split--text {
        padding: 60px 24px;
        text-align: center;
    }

    .hero__eyebrow {
        text-align: center;
    }

    .hero__subheadline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .about__image-main img {
        height: 350px;
    }

    .about__image-small {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
    }

    .about__stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .menu__tabs {
        flex-wrap: wrap;
    }

    .menu__grid {
        grid-template-columns: 1fr;
    }

    .gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery__item--large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery__item:nth-child(2),
    .gallery__item:nth-child(3),
    .gallery__item:nth-child(4),
    .gallery__item:nth-child(5) {
        grid-column: span 1;
    }

    .gallery__item img {
        height: 220px;
    }

    .form__row {
        grid-template-columns: 1fr;
    }

    .contact__form-wrapper {
        padding: 32px 24px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__headline {
        font-size: 2.25rem;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .menu__tabs {
        flex-direction: column;
        align-items: center;
    }

    .menu__tab {
        width: 100%;
        text-align: center;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
    }

    .gallery__item--large {
        grid-column: span 1;
    }
}
