/* =========================================================
   INNACUP MAIN WEBSITE
   ========================================================= */

:root {
    --innacup-aqua: #c7e8ec;
    --innacup-teal: #0e8c86;
    --innacup-cream: #f7f8f2;
    --innacup-yellow: #ffc94d;
    --innacup-pink: #f7c6cf;
    --innacup-chocolate: #5a3a2e;

    --text-dark: #222222;
}


/* =========================================================
   PAGE / SITE CONTAINER
   ========================================================= */

* {
    box-sizing: border-box;
}

body.home-page,
body.icecream-page,
body.gladalice-page,
body.contact-page {
    margin: 0;
    padding: 0;

    background: var(--innacup-teal);
    color: var(--text-dark);

    font-family: "Nunito", Arial, sans-serif;
}

.site-container {
    width: 75%;
    max-width: 1500px;
    margin: 20px auto;

    background: var(--innacup-cream);

    border-radius: 24px;
    overflow: hidden;

}


/* =========================================================
   SITE HEADER
   ========================================================= */

.site-header {
    width: 100%;
    background: var(--innacup-cream);
}


/* =========================================================
   BRAND BANNER
   ========================================================= */

.brand-banner {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;

    min-height: 150px;
}


/* ---------- Banner Image ---------- */

.banner-image {
    height: 150px;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
}

.banner-image img {
    display: block;
    width: auto;
    height: 100%;
    object-fit: contain;
}


/* ---------- Banner Message ---------- */

.banner-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 20px 30px;

    text-align: center;
}

.banner-script {
    font-family: "Patrick Hand", Arial, sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.5px;
    color: #e65f7a;
}

.banner-tagline {
    margin-top: 12px;

    font-size: 17px;
    font-weight: 600;
}

.banner-divider {
    display: flex;
    align-items: center;

    gap: 9px;

    width: 150px;

    margin-top: 9px;
}

.banner-divider span:not(.banner-heart) {
    flex: 1;

    height: 1px;

    background: #e65f7a;
}

.banner-heart {
    color: #e65f7a;
    font-size: 13px;
}


/* ---------- Dark Separator ---------- */

.banner-separator {
    width: 100%;
    height: 4px;

    background: #222222;
}


/* =========================================================
   NAVIGATION ROW
   ========================================================= */

.nav-row {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 28px;

    min-height: 66px;

    padding: 10px 4%;

    border-bottom: 4px solid #222222;

    background:
        linear-gradient(
            to right,
            var(--innacup-aqua) 0%,
            var(--innacup-aqua) 16.666%,
            var(--innacup-teal) 16.666%,
            var(--innacup-teal) 33.333%,
            var(--innacup-cream) 33.333%,
            var(--innacup-cream) 50%,
            var(--innacup-yellow) 50%,
            var(--innacup-yellow) 66.666%,
            var(--innacup-pink) 66.666%,
            var(--innacup-pink) 83.333%,
            var(--innacup-chocolate) 83.333%,
            var(--innacup-chocolate) 100%
        );
}


/* ---------- Navigation ---------- */

.main-nav {
    display: flex;
    align-items: center;

    gap: 14px;
}

.main-nav a {
    display: inline-block;

    padding: 9px 14px;

    background: var(--innacup-cream);
    color: var(--text-dark);

    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 7px;

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);

    font-size: 14px;
    font-weight: 800;

    text-decoration: none;
    text-transform: uppercase;

    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        color 0.15s ease,
        background-color 0.15s ease;
}

.main-nav a:hover {
    transform: translateY(-1px);
    color: var(--innacup-teal);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.22);
}

.main-nav a.active {
    color: var(--innacup-teal);

    box-shadow:
        0 3px 7px rgba(0, 0, 0, 0.22),
        inset 0 -3px 0 var(--innacup-teal);
}


/* ---------- Header Actions ---------- */

.header-actions {
    display: flex;
    align-items: center;

    gap: 14px;
}

.order-button,
.cart-link {
    display: inline-block;

    padding: 9px 14px;

    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 7px;

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);

    color: var(--text-dark);

    font-size: 14px;
    font-weight: 800;

    text-decoration: none;
    text-transform: uppercase;

    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        filter 0.15s ease;
}

.order-button {
    background: var(--innacup-pink);
}

.cart-link {
    background: var(--innacup-cream);
}

.order-button:hover,
.cart-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.22);
}

.order-button:hover {
    filter: brightness(0.97);
}


/* =========================================================
   LEGACY COLOR STRIPE
   Navigation now carries the six-color palette.
   ========================================================= */

.brand-stripe {
    display: none;
}




/* =========================================================
   HEADER STORE INFO BAR
   ========================================================= */

.header-store-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;

    min-height: 34px;
    padding: 6px 4%;

    background: var(--innacup-cream);
    color: var(--text-dark);

    border-bottom: 1px solid rgba(0, 0, 0, 0.12);

    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
}

.header-store-divider {
    color: var(--innacup-teal);
    font-weight: 800;
}

@media (max-width: 700px) {
    .header-store-bar {
        flex-wrap: wrap;
        gap: 3px 10px;
        padding: 8px 5%;
        font-size: 13px;
    }
}


/* =========================================================
   HOME HERO
   ========================================================= */

.home-hero {
    display: grid;
    grid-template-columns: 52% 48%;
    align-items: center;

    width: 94%;
    margin: 0 auto;
    padding: 36px 3% 34px;

    background: var(--innacup-cream);
}


/* ---------- Storefront ---------- */

.hero-photo {
    width: 100%;
    height: 360px;
    overflow: hidden;

    border-radius: 16px;

    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.16);
}

.hero-photo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* ---------- Hero Content ---------- */

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    margin-left: 7%;
    padding: 28px 8%;

    background: var(--innacup-cream);
}

.hero-script {
    margin: 0 0 5px 0;

    font-family: "Patrick Hand", cursive;
    font-size: 38px;
    line-height: 1;

    color: #e65f7a;
}

.hero-content h1 {
    margin: 0;

    font-family: "Oswald", Arial, sans-serif;

    font-size: clamp(46px, 4vw, 68px);
    font-weight: 600;
    line-height: 0.95;

    text-align: left;
    text-transform: uppercase;

    color: var(--innacup-teal);
}


/* ---------- Divider ---------- */

.hero-divider {
    display: flex;
    align-items: center;

    gap: 10px;

    width: 100%;
    max-width: 430px;

    margin: 14px 0 8px;
}

.hero-divider span:not(.hero-heart) {
    flex: 1;
    height: 2px;
    background: #e65f7a;
}

.hero-heart {
    color: #e65f7a;
    font-size: 18px;
}


/* ---------- Welcome Copy ---------- */

.welcome-tagline {
    margin: 6px 0 10px;
    font-size: 24px;
    line-height: 1.15;
}

.welcome-intro {
    max-width: 500px;
    margin: 0 0 5px;
    font-size: 16px;
    line-height: 1.35;
    color: var(--text-dark);
}

.welcome-highlights {
    margin: 0 0 10px;
}

.welcome-group {
    margin: 0 0 8px;
}

.welcome-group:last-child {
    margin-bottom: 0;
}

.welcome-group strong {
    font-size: 15px;
    line-height: 1.25;
}

.welcome-group:nth-child(2) strong {
    display: block;
}

.welcome-closing {
    max-width: 500px;
    margin: 6px 0 0;
    font-size: 16px;
    line-height: 1.35;
    color: var(--text-dark);
}


/* =========================================================
   HOMEPAGE SECTION DIVIDERS
   ========================================================= */

.ice-cream-section,
.bakery-section {
    position: relative;
}

.ice-cream-section::before,
.bakery-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;

    width: 100%;
    height: 6px;

    background:
        linear-gradient(
            to right,
            #222222 0%,
            #222222 25%,
            var(--innacup-aqua) 25%,
            var(--innacup-aqua) 33.333%,
            var(--innacup-teal) 33.333%,
            var(--innacup-teal) 41.666%,
            var(--innacup-cream) 41.666%,
            var(--innacup-cream) 50%,
            var(--innacup-yellow) 50%,
            var(--innacup-yellow) 58.333%,
            var(--innacup-pink) 58.333%,
            var(--innacup-pink) 66.666%,
            var(--innacup-chocolate) 66.666%,
            var(--innacup-chocolate) 75%,
            #222222 75%,
            #222222 100%
        );
}


/* =========================================================
   SHARED HOMEPAGE FEATURE PHOTO STYLE
   ========================================================= */

.hero-photo,
.ice-cream-photo,
.bakery-photo {
    width: 100%;
    height: 360px;
    overflow: hidden;

    border-radius: 16px;

    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.16);
}

.hero-photo img,
.ice-cream-photo img,
.bakery-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* =========================================================
   ICE CREAM SECTION
   ========================================================= */

.ice-cream-section {
    display: grid;
    grid-template-columns: 52% 48%;
    align-items: center;

    width: 94%;
    margin: 0 auto;
    padding: 36px 3% 34px;

    background: #e8f4f1;
}

.ice-cream-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    margin-left: 7%;
    padding: 28px 10%;
}

.ice-cream-logo {
    display: block;
    width: 325px;
    max-width: 100%;
    height: auto;
    margin-bottom: 8px;
}


/* ---------- Section Logo Divider ---------- */

.ice-cream-rule,
.bakery-rule {
    display: flex;
    align-items: center;
    gap: 10px;

    width: 100%;
    max-width: 280px;

    margin: 10px 0 18px;
}

.ice-cream-rule span:not(.section-heart),
.bakery-rule span:not(.section-heart) {
    flex: 1;
    height: 2px;
    background: #e65f7a;
}

.section-heart {
    color: #e65f7a;
    font-size: 16px;
    line-height: 1;
}

.ice-cream-content p {
    max-width: 390px;
    margin: 0 0 24px;
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.5;
}

.ice-cream-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 6px;
    background: var(--innacup-teal);
    color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        filter 0.15s ease;
}

.ice-cream-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.20);
    filter: brightness(0.95);
}

.ice-cream-button span {
    font-size: 19px;
    line-height: 1;
}


/* =========================================================
   GLAD ALICE BAKERY
   ========================================================= */

.bakery-section {
    display: grid;
    grid-template-columns: 48% 52%;
    align-items: center;

    width: 94%;
    margin: 0 auto;
    padding: 36px 3% 34px;

    background: #fff3f5;
}

.bakery-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    margin-right: 7%;
    padding: 28px 10%;
}

.bakery-logo {
    display: block;
    width: 280px;
    max-width: 100%;
    height: auto;
    margin-bottom: 8px;
}

.bakery-content p {
    max-width: 390px;
    margin: 0 0 24px;
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.5;
}

.bakery-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 6px;
    background: #d94463;
    color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        filter 0.15s ease;
}

.bakery-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.20);
    filter: brightness(0.95);
}

.bakery-button span {
    font-size: 19px;
    line-height: 1;
}



/* =========================================================
   HOMEPAGE FEATURE CONTENT PANELS
   ========================================================= */

.hero-content,
.ice-cream-content,
.bakery-content {
    border: 6px solid;
    border-radius: 16px;

    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.12);

    text-align: center;
    align-items: center;
}

.hero-content {
    border-color: var(--innacup-teal);
}

.ice-cream-content {
    border-color: #8f6f91;
}

.bakery-content {
    border-color: #765044;
}

.hero-content h1,
.hero-script,
.welcome-tagline,
.welcome-intro,
.welcome-highlights,
.welcome-closing,
.ice-cream-content p,
.bakery-content p {
    text-align: center;
}

.hero-divider,
.section-divider,
.ice-cream-rule,
.bakery-rule {
    margin-left: auto;
    margin-right: auto;
}

.ice-cream-logo,
.bakery-logo {
    margin-left: auto;
    margin-right: auto;
}

.ice-cream-button,
.bakery-button {
    align-self: center;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {

    .brand-banner {
        grid-template-columns: 1fr;
    }

   .banner-image {
    height: 170px;
    justify-content: center;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

    .banner-message {
        padding: 25px;
    }

    .nav-row {
        flex-wrap: wrap;
        gap: 15px 30px;
    }

    .main-nav {
        width: 100%;
        justify-content: center;
        gap: 20px;
    }

    .header-actions {
        justify-content: center;
    }

    .home-hero,
    .ice-cream-section,
    .bakery-section {
        grid-template-columns: 1fr;
        width: 100%;
        padding: 36px 5%;
    }

    .hero-photo,
    .ice-cream-photo,
    .bakery-photo {
        max-width: 850px;
        height: 340px;
        margin: 0 auto;
    }

    .hero-content,
    .ice-cream-content,
    .bakery-content {
        margin: 28px auto 0;
        width: min(92%, 700px);
        padding: 28px 6%;
    }

    .bakery-content {
        order: 1;
    }

    .bakery-photo {
        order: 2;
    }
}

.section-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 230px;
    margin: 14px 0 18px;
}

.section-divider span:not(.section-heart) {
    flex: 1;
    height: 2px;
    background: #e65f7a;
}

.section-heart {
    color: #e65f7a;
    font-size: 18px;
    line-height: 1;
}

@media (max-width: 700px) {

    .site-container {
        width: 100%;
        margin: 0;
        border-radius: 0;
    }

    .banner-image {
        height: 145px;
    }

    .banner-script {
        font-size: 34px;
    }

    .banner-tagline {
        font-size: 15px;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 8px 18px;
    }

    .main-nav a {
        font-size: 13px;
    }

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

    .home-hero,
    .ice-cream-section,
    .bakery-section {
        padding: 30px 5%;
    }

    .hero-photo,
    .ice-cream-photo,
    .bakery-photo {
        height: 300px;
        border-radius: 12px;
    }

    .hero-script {
        font-size: 34px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .welcome-tagline {
        font-size: 22px;
    }

    .welcome-intro,
    .welcome-closing,
    .ice-cream-content p,
    .bakery-content p {
        font-size: 15px;
    }

    .welcome-group strong {
        font-size: 14px;
    }

    .hero-content,
    .ice-cream-content,
    .bakery-content {
        width: 100%;
        margin: 24px auto 0;
        padding: 24px 5%;
        border-width: 4px;
        border-radius: 12px;
    }
}
