/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/


/* =========================================
   HOME PAGE: HERO & WELCOME
========================================= */

@font-face {
    font-family: 'TAYDreamboat';
    src: url('fonts/TAYDreamboat-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ModularHouseplant';
    src: url('fonts/ModularHouseplantBold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    background-color: #ffffff;
    font-family: 'ModularHouseplant', Georgia, serif;
}

/* Hero Full Height */
.mish-hero {
    height: 100vh;
    width: 100%;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: scroll;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    position: relative;
    padding: 56px 20px 28px;
}

.instagram-link {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

.instagram-link:hover {
    color: #eee;
}

.mish-hero .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 16px 0;
    width: 100%;
}

.mish-hero .hero-kicker {
    margin: 0;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-family: 'TAYDreamboat', Georgia, serif;
}

.mish-hero .hero-logo {
    display: block;
    width: min(72vw, 520px);
    max-width: 100%;
    height: auto;
}

.mish-hero .hero-footer {
    display: grid;
    gap: 6px;
    color: #ffffff;
    text-align: center;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-family: 'TAYDreamboat', Georgia, serif;
    font-size: 0.95rem;
    line-height: 1.2;
    width: calc(100% - 40px);
}

.mish-hero .hero-footer p {
    margin: 0;
}

@media (orientation: portrait) {
    .mish-hero {
        background-image: url('images/hero-bg-vertical.jpg');
        background-size: cover;
        background-position: center center;
    }
}

@media (orientation: landscape) {
    .mish-hero {
        height: 100vh;
        min-height: 100vh;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        background-attachment: scroll;
    }
}

@media (max-width: 900px) {
    .mish-hero {
        background-attachment: scroll;
        background-position: center center;
        padding-top: 44px;
    }
}

.mish-hero .hero-title {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 2px;
    font-family: 'TAYDreamboat', Georgia, serif;
}

/* Welcome Section */
.mish-welcome {
    background-color: #ffffff;
    color: #1a1a1a;
    padding: 120px 5%;
    text-align: left;
}

.welcome-container {
    max-width: 1100px;
    margin: 0 auto;
}

.welcome-container .section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 400;
    font-family: 'TAYDreamboat', Georgia, serif;
}

.welcome-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2a2a2a;
}

.mish-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 24px;
    transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    font-family: 'TAYDreamboat', Georgia, serif;
}

.mish-button--inline {
    margin-top: 0;
    white-space: nowrap;
}

.mish-button:hover {
    background-color: #2a2a2a;
    color: #fff;
    box-shadow: 0 12px 24px rgba(15, 15, 15, 0.18);
}

/* =========================================
   HOME PAGE: MENU LINK
========================================= */

.mish-home-menu {
    background-color: #ffffff;
    padding: 120px 5%;
}

.home-menu-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    align-items: center;
}

.home-menu-title {
    font-size: 2rem;
    margin: 0 0 12px;
    font-weight: 500;
    font-family: 'TAYDreamboat', Georgia, serif;
}

.home-menu-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0 0 20px;
}

.home-menu-image {
    width: 100%;
    min-height: 360px;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
}

@media (max-width: 900px) {
    .home-menu-inner {
        grid-template-columns: 1fr;
    }

    .home-menu-image {
        min-height: 280px;
    }
}

/* =========================================
   HOME PAGE: PHOTO GRID
========================================= */

/* O Container do Grid (Full Width) */
.mish-grid-section {
    width: 100%;
    background-color: #ffffff;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Colunas iguais */
    gap: 4px;
    width: 100%;
}

.grid-item {
    width: 100%;
    aspect-ratio: 4 / 3; /* Proporção fotográfica premium (pode mudar para 1/1 se quiser quadrados) */
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

/* Efeito sutil de Hover nas fotos */
.grid-item:hover {
    filter: brightness(1.1);
}

/* Responsividade (Mobile) */
@media (max-width: 900px) {
    .photo-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas em tablets */
    }
}

@media (max-width: 600px) {
    .photo-grid {
        grid-template-columns: 1fr; /* 1 coluna no celular */
    }
    .mish-hero .hero-kicker {
        font-size: 0.85rem;
        letter-spacing: 0.22em;
    }

    .mish-hero .hero-logo {
        width: min(82vw, 340px);
    }

    .mish-hero .hero-footer {
        font-size: 0.78rem;
        letter-spacing: 0.18em;
        gap: 4px;
    }
}

/* Força a Home Page a ignorar o contêiner padrão do GeneratePress e ser Full-Width */
.home .site.grid-container {
    max-width: 100% !important;
}

.home .site-content {
    padding: 0 !important;
    display: block !important;
}

.home .inside-article {
    padding: 0 !important;
    margin: 0 !important;
}

/* =========================================
   DEFAULT PAGE LAYOUTS
========================================= */

.mish-page {
    background-color: #ffffff;
    padding: 120px 5%;
}

.mish-page__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.mish-page__title {
    font-size: 2.5rem;
    margin-bottom: 24px;
    font-weight: 400;
    font-family: 'TAYDreamboat', Georgia, serif;
}

.mish-page__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2a2a2a;
}

/* =========================================
   MENU PAGE
========================================= */

.mish-menu-hero {
    height: 50vh;
    min-height: 240px;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 900px) {
    .mish-menu-hero {
        height: 28svh;
        min-height: 200px;
        background-attachment: scroll;
        background-position: center center;
    }
}

.mish-menu {
    background-color: #ffffff;
    padding: 120px 5%;
}

.mish-menu__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.mish-menu__header {
    margin: 0 auto 56px;
    max-width: 1040px;
}

.mish-menu__title-row {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    gap: 20px;
    margin-bottom: 12px;
}

.mish-menu__title {
    font-size: 3rem;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-family: 'TAYDreamboat', Georgia, serif;
}

.mish-menu__intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    max-width: 720px;
    margin: 0;
    font-family: 'ModularHouseplant', Georgia, serif;
}

.mish-menu__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1040px;
    margin: 0 auto;
    justify-content: center;
    align-items: start;
}

/* Masonry-style columns for large screens: items flow vertically into columns */
@media (min-width: 900px) {
    .mish-menu__grid {
        display: block;
        column-count: 2;
        column-gap: 32px;
        max-width: 1040px;
        margin: 0 auto;
    }

    .mish-menu__section {
        display: inline-block;
        width: 100%;
        margin: 0 0 32px;
        break-inside: avoid;
        -webkit-column-break-inside: avoid;
        page-break-inside: avoid;
    }

}

.mish-menu-page .site.grid-container {
    max-width: 100% !important;
}

.mish-menu-page .site-content {
    padding: 0 !important;
    display: block !important;
}

.mish-menu-page .inside-article {
    padding: 0 !important;
    margin: 0 !important;
}

.mish-menu-page .content-area {
    width: 100% !important;
    float: none !important;
}

.mish-menu-page .widget-area {
    display: none !important;
}

.mish-menu__section {
    border: 1px solid #e6e2dd;
    border-radius: 18px;
    padding: 28px 26px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(15, 15, 15, 0.06);
}

.mish-menu__section-head {
    margin-bottom: 20px;
}

.mish-menu__section-title {
    font-size: 1.6rem;
    margin: 0 0 6px;
    font-weight: 500;
    font-family: 'TAYDreamboat', Georgia, serif;
}

.mish-menu__section-note {
    margin: 0;
    font-size: 0.95rem;
    color: #6c6c6c;
}

.mish-menu__items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 18px;
}

/* =========================================
   ABOUT PAGE
========================================= */

.mish-about-hero {
    height: 50vh;
    min-height: 240px;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.mish-about {
    background-color: #ffffff;
    padding: 120px 5%;
}

.mish-about__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.mish-about__header {
    margin: 0 auto 56px;
    max-width: 1040px;
}

.mish-about__title {
    font-size: 3rem;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-family: 'TAYDreamboat', Georgia, serif;
}

.mish-about__section {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 40px;
    align-items: start;
    margin-bottom: 72px;
}

.mish-about__section--location {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.mish-about__text h2 {
    font-size: 1.6rem;
    margin: 0 0 16px;
    font-weight: 500;
    font-family: 'TAYDreamboat', Georgia, serif;
}

.mish-about__text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin: 0 0 18px;
    font-family: 'ModularHouseplant', Georgia, serif;
}

.mish-about__media {
    display: grid;
    gap: 16px;
}

.mish-about__image {
    width: 100%;
    border-radius: 18px;
    display: block;
    object-fit: cover;
}

.mish-about-page .site.grid-container {
    max-width: 100% !important;
}

.mish-about-page .site-content {
    padding: 0 !important;
    display: block !important;
}

.mish-about-page .inside-article {
    padding: 0 !important;
    margin: 0 !important;
}

.mish-about-page .content-area {
    width: 100% !important;
    float: none !important;
}

.mish-about-page .widget-area {
    display: none !important;
}

@media (max-width: 900px) {
    .mish-about__section,
    .mish-about__section--location {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .mish-about {
        padding: 96px 6%;
    }

    .mish-about__title {
        font-size: 2.4rem;
    }
}

/* =========================================
   EVENTS PAGE
========================================= */

.mish-events-hero {
    min-height: calc(100vh - 69px);
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background-image: url('images/events-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: grid;
    place-items: center;
    position: relative;
    padding: 40px 5%;
}

.mish-events-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(16, 12, 8, 0.38);
}

.mish-events {
    background-color: #ffffff;
    padding: 120px 5%;
}

.mish-events__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.mish-events__header {
    margin: 0 auto 48px;
    max-width: 1040px;
}

.mish-events__title {
    font-size: 3rem;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-family: 'TAYDreamboat', Georgia, serif;
}

.mish-events__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 48px;
    align-items: start;
}

.mish-events__text {
    display: grid;
    gap: 28px;
}

.mish-events__block h2 {
    font-size: 1.45rem;
    margin: 0 0 12px;
    font-weight: 500;
    font-family: 'TAYDreamboat', Georgia, serif;
}

.mish-events__block ul {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 8px;
    color: #3a3a3a;
    line-height: 1.7;
    font-family: 'ModularHouseplant', Georgia, serif;
}

.mish-events__media {
    display: grid;
    gap: 16px;
}

.mish-events__image {
    width: 100%;
    border-radius: 18px;
    display: block;
    object-fit: cover;
}

.mish-events-page .site.grid-container {
    max-width: 100% !important;
}

.mish-events-page .site-content {
    padding: 0 !important;
    display: block !important;
}

.mish-events-page .inside-article {
    padding: 0 !important;
    margin: 0 !important;
}

.mish-events-page .content-area {
    width: 100% !important;
    float: none !important;
}

.mish-events-page .widget-area {
    display: none !important;
}

@media (max-width: 900px) {
    .mish-events__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .mish-events {
        padding: 96px 6%;
    }

    .mish-events__title {
        font-size: 2.4rem;
    }
}

/* =========================================
   CONTACT PAGE
========================================= */

.mish-contact-hero {
    height: 50vh;
    min-height: 240px;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (min-width: 901px) {
    .mish-contact-hero {
        background-position: center 80%;
    }
}

.mish-contact {
    background-color: #ffffff;
    padding: 120px 5%;
}

.mish-contact__inner {
    max-width: 1040px;
    margin: 0 auto;
}

.mish-contact__header {
    margin-bottom: 48px;
}

.mish-contact__title {
    font-size: 3rem;
    margin: 0 0 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-family: 'TAYDreamboat', Georgia, serif;
}

.mish-contact__intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin: 0;
    font-family: 'ModularHouseplant', Georgia, serif;
}

.mish-contact__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.mish-contact__card {
    border: 1px solid #e6e2dd;
    border-radius: 18px;
    padding: 24px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 15, 15, 0.06);
}

.mish-contact__label {
    font-size: 1.05rem;
    margin: 0 0 8px;
    font-weight: 500;
    font-family: 'TAYDreamboat', Georgia, serif;
}

.mish-contact__value {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #2f2f2f;
    font-family: 'ModularHouseplant', Georgia, serif;
}

.mish-contact__hours p {
    margin: 0 0 8px;
}

.mish-contact__link {
    color: inherit;
    text-decoration: none;
}

.mish-contact__link:hover {
    text-decoration: underline;
}

.mish-contact-page .site.grid-container {
    max-width: 100% !important;
}

.mish-contact-page .site-content {
    padding: 0 !important;
    display: block !important;
}

.mish-contact-page .inside-article {
    padding: 0 !important;
    margin: 0 !important;
}

.mish-contact-page .content-area {
    width: 100% !important;
    float: none !important;
}

.mish-contact-page .widget-area {
    display: none !important;
}

@media (max-width: 900px) {
    .mish-contact__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .mish-contact {
        padding: 96px 6%;
    }

    .mish-contact__title {
        font-size: 2.4rem;
    }
}

/* =========================================
   GALLERY PAGE
========================================= */

.mish-gallery-hero {
    height: 50vh;
    min-height: 240px;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.08), rgba(26, 26, 26, 0.02));
    background-position: center center, center center;
    background-size: cover, cover;
    background-repeat: no-repeat, no-repeat;
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.mish-gallery {
    background-color: #ffffff;
    padding: 120px 5%;
}

.mish-gallery__inner {
    max-width: 1240px;
    margin: 0 auto;
}

.mish-gallery__header {
    max-width: 760px;
    margin: 0 0 48px;
}

.mish-gallery__eyebrow {
    margin: 0 0 10px;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7a6f63;
    font-family: 'ModularHouseplant', Georgia, serif;
}

.mish-gallery__title {
    font-size: 3rem;
    margin: 0 0 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-family: 'TAYDreamboat', Georgia, serif;
}

.mish-gallery__intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin: 0;
    font-family: 'ModularHouseplant', Georgia, serif;
}

.mish-gallery__grid {
    column-count: 3;
    column-gap: 16px;
}

.mish-gallery__item {
    margin: 0;
    display: inline-block;
    width: 100%;
    margin: 0 0 16px;
    border-radius: 20px;
    overflow: hidden;
    background: #f4f1ec;
    box-shadow: 0 18px 40px rgba(15, 15, 15, 0.06);
    aspect-ratio: 1 / 1;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
}

.mish-gallery__item--wide {
    aspect-ratio: 16 / 10;
}

.mish-gallery__item--tall {
    aspect-ratio: 4 / 5;
}

.mish-gallery__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.mish-gallery__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 56px rgba(15, 15, 15, 0.12);
}

.mish-gallery__item:hover .mish-gallery__image {
    transform: scale(1.04);
    filter: saturate(1.04);
}

.mish-gallery-page .site.grid-container {
    max-width: 100% !important;
}

.mish-gallery-page .site-content {
    padding: 0 !important;
    display: block !important;
}

.mish-gallery-page .inside-article {
    padding: 0 !important;
    margin: 0 !important;
}

.mish-gallery-page .content-area {
    width: 100% !important;
    float: none !important;
}

.mish-gallery-page .widget-area {
    display: none !important;
}

@media (max-width: 900px) {
    .mish-gallery__grid {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .mish-gallery {
        padding: 96px 6%;
    }

    .mish-gallery__title {
        font-size: 2.4rem;
    }

    .mish-gallery__grid {
        column-count: 1;
    }

    .mish-gallery__item,
    .mish-gallery__item--wide,
    .mish-gallery__item--tall {
        aspect-ratio: 4 / 5;
    }

    .mish-gallery-hero {
        height: 28svh;
        min-height: 200px;
    }
}

.mish-menu__item-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-weight: 500;
    font-family: 'TAYDreamboat', Georgia, serif;
}

.mish-menu__item-name {
    font-size: 1.05rem;
    font-family: 'TAYDreamboat', Georgia, serif;
}

.mish-menu__item-price {
    font-size: 1rem;
    color: #1a1a1a;
    white-space: nowrap;
    font-family: 'TAYDreamboat', Georgia, serif;
}

.mish-menu__item-desc {
    margin: 8px 0 0;
    font-size: 0.98rem;
    line-height: 1.6;
    color: #5b5b5b;
    font-family: 'ModularHouseplant', Georgia, serif;
}

.mish-menu__item-tags {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mish-menu__item-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #3e3e3e;
    background: #f4f1ed;
}

@media (max-width: 900px) {
    .mish-menu__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .mish-menu {
        padding: 96px 6%;
    }

    .mish-menu__title {
        font-size: 2.4rem;
    }
}

/* =========================================
   HEADER MODERNIZATION & REVEAL
========================================= */

/* 1. Main container (background + animation) */
.site-header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transform: translateY(0) !important;
    transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1) !important;
    background-color: #1a1a1a !important; /* Dark modern background */
    border-bottom: 1px solid rgba(255, 255, 255, 0.08); /* Subtle divider */
}

/* JS toggles this class to reveal the header */
.site-header.header-visible {
    transform: translateY(0);
}

/* 2. Inner container (height control) */
.site-header .inside-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 5% !important;
    height: 69px !important; /* Fixed header height for testing */
    box-sizing: border-box;
}

/* 3. Logo sizing (reduced) */
.site-header .site-logo img,
.site-header .header-image {
    max-width: 90px !important; /* Reduced from 120px */
    height: auto !important;
    display: block;
}

/* 4. Horizontal menu + spacing */
.main-navigation ul {
    display: flex !important;
    flex-direction: row !important;
    gap: 8px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    align-items: center;
}

/* 5. Link typography (white + premium) */
.main-navigation ul li a {
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important; /* Modern/premium touch */
    letter-spacing: 1px !important;
    text-decoration: none !important;
    background: transparent !important; /* Remove theme defaults */
    transition: opacity 0.3s ease !important;
    font-family: 'TAYDreamboat', Georgia, serif !important;
}

.main-navigation ul li a:hover {
    opacity: 0.6 !important; /* Elegant hover effect */
}

.menu-toggle {
    color: #ffffff !important;
    font-family: 'TAYDreamboat', Georgia, serif !important;
}

.menu-toggle .gp-icon,
.menu-toggle .gp-icon svg,
.menu-toggle .gp-icon path,
.menu-toggle .mobile-menu {
    color: #ffffff !important;
    fill: currentColor !important;
    stroke: currentColor !important;
}

/* 6. Hide native titles */
.main-title,
.site-description {
    display: none !important;
}

/* 7. System fixes (admin bar) */
body {
    padding-top: 0 !important;
}

/* Offset main content so the fixed header doesn't cover it.
   Keep hero sections flush to the top (no offset) */
.site-content,
.content-area,
.site-main,
.mish-page__inner {
    padding-top: 69px !important;
}

.home .site-content,
.mish-hero,
.mish-menu-hero,
.mish-about-hero,
.mish-events-hero,
.mish-contact-hero {
    padding-top: 0 !important;
}

/* admin bar adjustments */
.admin-bar .site-content,
.admin-bar .content-area,
.admin-bar .site-main {
    padding-top: calc(69px) !important;
}

.admin-bar .site-header {
    top: 32px !important;
}

/* Keep hero sections flush to the top even when WP admin bar is visible */
.admin-bar .mish-hero,
.admin-bar .mish-menu-hero,
.admin-bar .mish-about-hero,
.admin-bar .mish-events-hero,
.admin-bar .mish-contact-hero,
.admin-bar .mish-order-hero,
.admin-bar .home .site-content {
    padding-top: 0 !important;
}

/* =========================================
   ORDER PAGE
========================================= */

.mish-order-hero {
    min-height: calc(100vh - 69px);
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background-image: url('images/order-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: grid;
    place-items: center;
    position: relative;
    padding: 40px 5%;
}

.mish-order-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(16, 12, 8, 0.38);
}

.mish-order-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #ffffff;
    max-width: 700px;
}

.mish-order-hero__title {
    margin: 0;
    font-size: clamp(2.4rem, 6vw, 5rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: 'TAYDreamboat', Georgia, serif;
}

/* 8. Remove default menu white block from GeneratePress */
.site-header .main-navigation,
.site-header .main-navigation ul,
.site-header .main-navigation li {
    background-color: transparent !important;
    background: transparent !important;
}

@media (max-width: 900px) {
    .site-header .inside-header {
        padding: 10px 6% !important;
        gap: 12px;
    }

    .site-header .main-navigation {
        margin-left: auto;
    }

    .main-navigation .main-nav > ul {
        display: none !important;
        width: 100% !important;
    }

    .main-navigation.toggled .main-nav > ul {
        display: block !important;
        max-height: calc(100svh - 140px);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        padding: 8px 0 14px;
    }

    .main-navigation.toggled .main-nav > ul > li {
        width: 100%;
        float: none !important;
        display: block !important;
        text-align: left;
    }

    .main-navigation.toggled .main-nav > ul > li > a {
        display: block;
        width: 100%;
        padding: 10px 0;
    }

    .admin-bar .site-header {
        top: 46px !important;
    }

    .admin-bar .site-content,
    .admin-bar .content-area,
    .admin-bar .site-main {
        padding-top: calc(69px) !important;
    }
}

header > .grid-container {
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* =========================================
   CUSTOM FOOTER
========================================= */

.mish-footer {
    background: #1a1a1a;
    color: #f7f2ea;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 42px 0 22px;
}

.mish-footer__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr auto;
    gap: 28px;
    align-items: start;
    padding: 0 5%;
}

.mish-footer__eyebrow {
    margin: 0 0 10px;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(247, 242, 234, 0.72);
}

.mish-footer__tagline {
    margin: 0;
    max-width: 28rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.mish-footer__contact {
    display: grid;
    gap: 12px;
    justify-items: start;
}

.mish-footer__address {
    margin: 0;
    font-style: normal;
    line-height: 1.7;
    color: rgba(247, 242, 234, 0.88);
}

.mish-footer__email {
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.03em;
}

.mish-footer__email:hover {
    opacity: 0.75;
}

.mish-footer__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
    align-items: center;
}

.mish-footer__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
    font-family: 'TAYDreamboat', Georgia, serif;
}

.mish-footer__button:hover {
    transform: translateY(-1px);
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
}

.mish-footer__social {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff;
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.mish-footer__social:hover {
    transform: translateY(-1px);
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
}

.mish-footer__social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.mish-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-top: 30px;
    padding: 18px 5% 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(247, 242, 234, 0.66);
    font-size: 0.88rem;
}

.mish-footer__bottom-note {
    text-align: right;
}

@media (max-width: 900px) {
    .mish-footer__inner {
        grid-template-columns: 1fr;
    }

    .mish-footer__actions {
        justify-content: flex-start;
    }

    .mish-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .mish-footer__bottom-note {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .mish-footer {
        padding: 34px 0 18px;
    }

    .mish-footer__inner,
    .mish-footer__bottom {
        padding-left: 6%;
        padding-right: 6%;
    }

    .mish-footer__tagline {
        max-width: none;
    }
}

