@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap');

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Rubik', Arial, Helvetica, sans-serif;
    background: #f4f1eb;
    color: #181818;
}

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

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

/* HEADER */
.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    padding: 22px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,.35),
        rgba(0,0,0,0)
    );
    transition: background .3s ease;
}

.brand {
    display: inline-flex;
    align-items: center;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.brand img {
    display: block;
    width: auto;
    height: 66px;
    max-width: 170px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .015em;
}

.main-nav a {
    opacity: .92;
    transition: opacity .2s ease;
}

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

.reserve {
    border: 1px solid rgba(255,255,255,.9);
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 500;
    transition: background .2s ease, color .2s ease;
}

.reserve:hover {
    background: white;
    color: #111;
}

.menu-toggle {
    display: none;
}

/* HERO */
.hero {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 650px;
    overflow: hidden;
    background: linear-gradient(135deg, #332b26, #101010);
}

.hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    inset: 0;
}

.mobile-video {
    display: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,.28),
        rgba(0,0,0,.08) 45%,
        rgba(0,0,0,.55)
    );
}

.hero-center {
    position: absolute;
    left: 50%;
    top: 48%;
    transform: translate(-50%, -50%);
    width: min(1000px, 92%);
    text-align: center;
    color: white;
}

.hero-center h1 {
    margin: 0;
    font-size: clamp(72px, 11vw, 160px);
    line-height: .86;
    font-weight: 600;
    letter-spacing: -0.055em;
}

.hero-subtitle {
    margin-top: 26px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.hero-button {
    display: inline-block;
    margin-top: 36px;
    padding: 16px 28px;
    border: 1px solid rgba(255,255,255,.95);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    transition: background .2s ease, color .2s ease;
}

.hero-button:hover {
    background: white;
    color: black;
}

.hero-bottom {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 26px;
    display: flex;
    align-items: center;
    gap: 32px;
    color: white;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .01em;
}

.hero-bottom a {
    border-bottom: 1px solid rgba(255,255,255,.4);
}

.apn-logo {
    width: auto;
    height: 82px;
    max-width: 165px;
    object-fit: contain;
    margin-left: auto;
}

/* SECTIONS */
.section {
    padding: 110px 32px;
}

.section-inner {
    width: min(1280px, 100%);
    margin: 0 auto;
}

.section-inner.narrow {
    max-width: 850px;
}

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

.section h2 {
    margin: 0 0 40px;
    font-size: clamp(42px, 6vw, 82px);
    line-height: .98;
    letter-spacing: -0.045em;
    font-weight: 500;
}

.section h3 {
    font-size: 30px;
    font-weight: 500;
}

.eyebrow {
    margin-bottom: 18px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .18em;
}

/* EVENTS */
.events-section {
    background: #151515;
    color: white;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.event-row {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 26px 0;
    border-top: 1px solid rgba(255,255,255,.18);
    transition: opacity .2s ease;
}

.event-row:last-child {
    border-bottom: 1px solid rgba(255,255,255,.22);
}

.event-row:hover {
    opacity: .72;
}

.event-date {
    font-size: 20px;
    font-weight: 500;
}

.event-title {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 400;
    letter-spacing: -0.02em;
}

.event-time {
    opacity: .7;
}

/* ABOUT */
.two-column {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 90px;
    align-items: start;
}

.text,
.chef-text {
    max-width: 680px;
    font-size: 18px;
    line-height: 1.7;
}

.chef-card img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

/* CLASSES */
.cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.content-card {
    background: white;
}

.content-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.content-card h3,
.content-card p {
    margin-left: 28px;
    margin-right: 28px;
}

.content-card p {
    margin-bottom: 32px;
    line-height: 1.6;
}

/* MENU */
.menu-section {
    background: #ded6cb;
}

.button {
    display: inline-block;
    margin-top: 20px;
    padding: 17px 28px;
    border: 1px solid #181818;
    border-radius: 40px;
    transition: .2s;
}

.button:hover {
    background: #181818;
    color: white;
}

/* BANQUET */
.banquet-section {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #222;
    color: white;
}

.banquet-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banquet-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.48);
}

.banquet-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-left: max(32px, calc((100vw - 1280px) / 2));
}

.button-light {
    border-color: white;
}

.button-light:hover {
    background: white;
    color: black;
}

/* FOOTER */
.footer {
    padding: 55px 34px;
    display: grid;
    grid-template-columns: 1.2fr 2fr 1fr 1fr auto;
    gap: 25px;
    background: #111;
    color: white;
    align-items: center;
}

.footer-actions {
    display: flex;
    gap: 20px;
}

/* MOBILE */
@media (max-width: 900px) {
    .site-header {
        padding: 20px;
    }

    .brand img {
        height: 54px;
        max-width: 145px;
    }

    .menu-toggle {
        display: block;
        width: 34px;
        height: 30px;
        border: 0;
        background: transparent;
        padding: 5px;
        position: relative;
        z-index: 1100;
    }

    .menu-toggle span {
        display: block;
        height: 1px;
        margin: 7px 0;
        background: white;
    }

    .main-nav {
        display: none;
        position: fixed;
        inset: 0;
        padding: 110px 28px 40px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 24px;
        background: rgba(15,15,15,.97);
        font-size: 24px;
    }

    .main-nav.open {
        display: flex;
    }

    .desktop-video {
        display: none;
    }

    .mobile-video {
        display: block;
    }

    .hero {
        min-height: 620px;
    }

    .hero-center {
        top: 46%;
    }

    .hero-center h1 {
        font-size: clamp(58px, 20vw, 96px);
        line-height: .88;
    }

    .hero-subtitle {
        font-size: 12px;
        letter-spacing: .18em;
    }

    .hero-button {
        margin-top: 28px;
    }

    .hero-bottom {
        left: 20px;
        right: 20px;
        bottom: 18px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px 16px;
        font-size: 15px;
        line-height: 1.35;
    }

    .apn-logo {
        height: 68px;
        max-width: 135px;
        margin-left: 0;
        margin-top: 12px;
    }

    .section {
        padding: 75px 20px;
    }

    .section-heading {
        display: block;
    }

    .section-heading > a {
        display: inline-block;
        margin-bottom: 30px;
    }

    .event-row {
        grid-template-columns: 75px 1fr;
        gap: 15px;
    }

    .event-time {
        display: none;
    }

    .two-column,
    .cards {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer {
        grid-template-columns: 1fr;
        padding: 45px 20px;
    }
}

/* ===== ABOUT / CHEF — v3 ===== */

.about-section {
    background: #f4f1eb;
}

.about-section .section-inner {
    width: min(1280px, 100%);
}

.about-copy {
    width: 100%;
    max-width: none;
    margin-bottom: 90px;
}

.about-copy h2 {
    margin-bottom: 34px;
}

.about-text {
    width: 100%;
    max-width: 1100px;
    font-size: 19px;
    line-height: 1.72;
}

.about-text p {
    margin: 0 0 18px;
}

.chef-section {
    display: grid;
    grid-template-columns: minmax(380px, 520px) minmax(0, 1fr);
    gap: 72px;
    align-items: center;
    width: 100%;
}

.chef-photo {
    width: 100%;
}

.chef-photo img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
}

.chef-content {
    max-width: 720px;
}

.chef-content .eyebrow {
    margin-bottom: 16px;
}

.chef-content h3 {
    margin: 0 0 26px;
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -0.035em;
}

.chef-text {
    max-width: 700px;
    font-size: 18px;
    line-height: 1.72;
}

.chef-text p {
    margin: 0 0 18px;
}

.chef-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {

    .about-copy {
        margin-bottom: 55px;
    }

    .about-text {
        max-width: none;
        font-size: 17px;
        line-height: 1.65;
    }

    .chef-section {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .chef-photo {
        max-width: 560px;
    }

    .chef-content {
        max-width: none;
    }

    .chef-content h3 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .chef-text {
        max-width: none;
        font-size: 16px;
        line-height: 1.65;
    }
}


/* ===== PEZZO v4: clickable address + social icons ===== */

.hero-address,
.footer-address {
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.4);
    transition: opacity .2s ease, border-color .2s ease;
}

.hero-address:hover,
.footer-address:hover {
    opacity: .72;
    border-color: rgba(255,255,255,.8);
}

.hero-socials {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    overflow: hidden;
    transition: transform .2s ease, opacity .2s ease;
}

.hero-socials a:hover {
    transform: translateY(-2px);
    opacity: .85;
}

.hero-socials img {
    display: block;
    width: 42px;
    height: 42px;
}

@media (max-width: 900px) {
    .hero-socials {
        grid-column: 1 / -1;
        gap: 10px;
        margin-top: 4px;
    }

    .hero-socials a,
    .hero-socials img {
        width: 48px;
        height: 48px;
    }
}


/* ===== PEZZO v5: mobile hero-bottom fix + smaller social icons ===== */

/* Social buttons — compact on desktop */
.hero-socials {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
}

.hero-socials a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,.34);
    border-radius: 10px;
    background: rgba(255,255,255,.10);
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.hero-socials a:hover {
    background: rgba(255,255,255,.18);
    border-color: rgba(255,255,255,.55);
    transform: translateY(-1px);
}

.hero-socials img {
    width: 18px;
    height: 18px;
    display: block;
}

/* Keep the APN mark visually separate and aligned */
.hero-bottom .apn-logo {
    flex: 0 0 auto;
}

/* Mobile: explicit grid, so address/phone/hours/social/APN never drift */
@media (max-width: 900px) {

    .hero-bottom {
        left: 18px;
        right: 18px;
        bottom: 16px;

        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "address address"
            "phone   hours"
            "social  apn";
        column-gap: 14px;
        row-gap: 8px;

        align-items: center;
        font-size: 14px;
        line-height: 1.25;
    }

    .hero-bottom > div:nth-child(1) {
        grid-area: address;
        min-width: 0;
    }

    .hero-bottom > div:nth-child(2) {
        grid-area: phone;
        min-width: 0;
    }

    .hero-bottom > div:nth-child(3) {
        grid-area: hours;
        justify-self: end;
        white-space: nowrap;
    }

    .hero-socials {
        grid-area: social;
        margin: 2px 0 0 0;
        gap: 6px;
        align-self: center;
    }

    .hero-socials a {
        width: 32px;
        height: 32px;
        border-radius: 9px;
    }

    .hero-socials img {
        width: 17px;
        height: 17px;
    }

    .hero-bottom .apn-logo {
        grid-area: apn;
        justify-self: end;
        align-self: center;
        width: auto;
        height: 54px;
        max-width: 105px;
        margin: 0;
    }

    .hero-address,
    .hero-bottom a {
        overflow-wrap: anywhere;
    }
}

/* Narrow phones */
@media (max-width: 430px) {

    .hero-bottom {
        left: 15px;
        right: 15px;
        bottom: 14px;
        column-gap: 10px;
        row-gap: 7px;
        font-size: 13px;
    }

    .hero-bottom > div:nth-child(2) {
        font-size: 13px;
    }

    .hero-bottom > div:nth-child(3) {
        font-size: 13px;
    }

    .hero-socials a {
        width: 30px;
        height: 30px;
        border-radius: 8px;
    }

    .hero-socials img {
        width: 16px;
        height: 16px;
    }

    .hero-bottom .apn-logo {
        height: 48px;
        max-width: 92px;
    }
}


/* ===== PEZZO v6: plain social icons, no frames, no hover effects ===== */

.hero-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.hero-socials a,
.hero-socials a:hover,
.hero-socials a:focus,
.hero-socials a:active {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: auto;
    height: auto;

    padding: 0;
    margin: 0;

    border: 0 !important;
    border-radius: 0 !important;
    outline: 0;

    background: transparent !important;

    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    box-shadow: none !important;
    text-decoration: none;
}

.hero-socials img {
    display: block;
    width: 22px;
    height: 22px;
    margin: 0;
    padding: 0;
}

@media (max-width: 900px) {
    .hero-socials {
        gap: 10px;
        margin: 0;
    }

    .hero-socials a,
    .hero-socials a:hover,
    .hero-socials a:focus,
    .hero-socials a:active {
        width: auto;
        height: auto;
        border-radius: 0 !important;
    }

    .hero-socials img {
        width: 21px;
        height: 21px;
    }
}

@media (max-width: 430px) {
    .hero-socials {
        gap: 9px;
    }

    .hero-socials img {
        width: 20px;
        height: 20px;
    }
}


/* ===== PEZZO v7: footer rebuild ===== */

.site-footer {
    background: #0c0c0c;
    color: #ffffff;
    padding: 28px 34px;
}

.site-footer a {
    color: #ffffff;
    text-decoration: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(220px, 1.4fr) minmax(160px, auto) minmax(120px, auto) auto minmax(340px, 1.8fr);
    gap: 18px 26px;
    align-items: center;
    width: 100%;
}

.footer-item {
    min-width: 0;
    font-size: 15px;
    line-height: 1.35;
}

.footer-address {
    border-bottom: 1px solid rgba(255,255,255,.38);
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-socials a,
.footer-socials a:hover,
.footer-socials a:focus,
.footer-socials a:active {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    box-shadow: none !important;
    text-decoration: none;
}

.footer-socials img {
    display: block;
    width: 20px;
    height: 20px;
}

.footer-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    flex-wrap: nowrap;
    min-width: 0;
}

.footer-privacy {
    opacity: .92;
}

.footer-booking,
.footer-delivery {
    white-space: nowrap;
}

.footer-delivery {
    display: inline-flex;
    align-items: center;
}

@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .footer-actions {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 14px 20px;
    }

    .footer-privacy {
        width: 100%;
    }
}

@media (max-width: 700px) {
    .site-footer {
        padding: 22px 18px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .footer-item {
        font-size: 14px;
    }

    .footer-socials img {
        width: 19px;
        height: 19px;
    }

    .footer-actions {
        justify-content: flex-start;
        gap: 12px 18px;
    }

    .footer-privacy {
        width: 100%;
    }
}


/* ===== PEZZO v8: mobile hero + footer cleanup ===== */

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

@media (max-width: 900px) {

    .hero-bottom {
        left: 20px;
        right: 20px;
        bottom: 18px;

        display: grid;
        grid-template-columns: minmax(0, 1fr) 110px;
        grid-template-areas:
            "address apn"
            "phone   apn"
            "hours   apn"
            "social  apn";

        column-gap: 18px;
        row-gap: 7px;

        align-items: end;

        font-size: 15px;
        line-height: 1.25;
    }

    .hero-bottom > div:nth-child(1) {
        grid-area: address;
        min-width: 0;
        justify-self: start;
    }

    .hero-bottom > div:nth-child(2) {
        grid-area: phone;
        min-width: 0;
        justify-self: start;
    }

    .hero-bottom > div:nth-child(3) {
        grid-area: hours;
        min-width: 0;
        justify-self: start;
    }

    .hero-socials {
        grid-area: social;

        display: flex;
        align-items: center;
        justify-content: flex-start;

        gap: 10px;
        margin: 4px 0 0 0;
    }

    .hero-socials img {
        width: 21px;
        height: 21px;
    }

    .hero-bottom .apn-logo {
        grid-area: apn;

        justify-self: end;
        align-self: end;

        width: auto;
        height: 76px;
        max-width: 110px;

        margin: 0 0 2px 0;
        object-fit: contain;
    }

    .hero-address,
    .hero-bottom a {
        overflow-wrap: normal;
        word-break: normal;
    }
}

@media (max-width: 430px) {

    .hero-bottom {
        left: 18px;
        right: 18px;
        bottom: 16px;

        grid-template-columns: minmax(0, 1fr) 92px;

        column-gap: 14px;
        row-gap: 6px;

        font-size: 14px;
    }

    .hero-socials img {
        width: 20px;
        height: 20px;
    }

    .hero-bottom .apn-logo {
        height: 64px;
        max-width: 92px;
    }
}


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

.site-footer {
    background: #0c0c0c;
    color: #fff;
}

.site-footer a {
    color: #fff;
}

@media (max-width: 700px) {

    .site-footer {
        padding: 28px 20px 30px;
    }

    .site-footer .section-inner.footer-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;

        width: 100%;
        margin: 0;
    }

    .site-footer .footer-item {
        width: 100%;
        min-width: 0;

        font-size: 15px;
        line-height: 1.4;

        margin: 0;
        padding: 0;
    }

    .site-footer .footer-item:nth-child(1) {
        order: 1;
        margin-bottom: 10px;
    }

    .site-footer .footer-item:nth-child(2) {
        order: 2;
        margin-bottom: 10px;
    }

    .site-footer .footer-item:nth-child(3) {
        order: 3;
        margin-bottom: 16px;
    }

    .site-footer .footer-socials {
        order: 4;

        display: flex;
        align-items: center;
        justify-content: flex-start;

        gap: 12px;

        margin-bottom: 22px;
    }

    .site-footer .footer-socials img {
        width: 21px;
        height: 21px;
    }

    .site-footer .footer-actions {
        order: 5;

        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;

        width: 100%;

        justify-content: stretch;
        align-items: start;
    }

    .site-footer .footer-actions a {
        display: block;
        width: fit-content;

        margin: 0;
        padding: 0;

        white-space: normal;
        line-height: 1.35;
    }

    .site-footer .footer-privacy {
        margin-bottom: 6px;
        opacity: .85;
    }

    .site-footer .footer-booking,
    .site-footer .footer-delivery {
        font-weight: 500;
    }
}
