/* =========================================================
   BALLOONAIRE — CLEAN MAIN STYLESHEET
   Consolidated + Gallery + Header + Responsive Fixes
========================================================= */

:root {
    --pink: #e8a7b8;
    --pink-dark: #c97991;
    --pink-light: #f9e6eb;
    --pink-soft: #fdf3f5;
    --cream: #fffaf7;
    --white: #ffffff;

    --text: #3f3439;
    --text-light: #76666d;
    --border: rgba(63, 52, 57, 0.09);

    --shadow: 0 24px 60px rgba(63, 52, 57, 0.12);

    --radius: 28px;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;

    overflow-x: hidden;

    font-family: "DM Sans", sans-serif;

    background: var(--cream);
    color: var(--text);

    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

button,
.nav-link,
.btn {
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid rgba(201, 121, 145, 0.35);
    outline-offset: 3px;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(1180px, 90%);
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}

.center {
    text-align: center;
}


/* =========================================================
   ANNOUNCEMENT
========================================================= */

.announcement {
    width: 100%;

    background: var(--pink-dark);
    color: white;

    text-align: center;

    padding: 10px 20px;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 1px;
}


/* =========================================================
   HEADER
========================================================= */

header {
    position: sticky;
    top: 0;

    z-index: 1000;

    width: 100%;
    height: 84px;

    background: transparent;

    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    border-bottom: none;
}


/* =========================================================
   NAV
========================================================= */

.nav {
    width: min(1380px, 94%);
    height: 84px;

    margin: 0 auto;

    display: flex;
    align-items: center;

    justify-content: space-between;

    gap: 25px;
}


/* =========================================================
   LOGO — CLEAN VERSION
========================================================= */

.nav > .logo {
    flex: 0 0 260px;

    width: 260px;
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    margin: 0;
    padding: 0;

    overflow: hidden;

    font-size: 0;
    line-height: 0;
}

.nav > .logo img,
.nav > .logo .site-logo {
    display: block !important;

    width: 260px !important;
    height: 76px !important;

    max-width: 260px !important;
    max-height: 76px !important;

    min-width: 0 !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: cover !important;
    object-position: center 52% !important;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.nav-links {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 22px;

    flex-wrap: nowrap;

    white-space: nowrap;
}

.nav-link {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    position: relative;

    white-space: nowrap;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.4px;

    color: var(--text);

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--pink-dark);
}


/* =========================================================
   DROPDOWN
========================================================= */

.nav-dropdown {
    display: flex;
    align-items: center;

    position: relative;
}

.dropdown-arrow {
    font-size: 7px;

    color: #aaa0a4;

    transition: transform 0.25s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu,
.mega-menu {
    position: absolute;

    top: 100%;
    left: 50%;

    transform: translateX(-50%) translateY(12px);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;

    z-index: 999;
}

.dropdown-menu {
    width: 240px;

    padding: 25px;

    background: white;

    border-top: 2px solid var(--pink);

    border-radius: 0 0 20px 20px;

    box-shadow: 0 20px 50px rgba(63, 52, 57, 0.12);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:hover .mega-menu,
.nav-dropdown.open .dropdown-menu,
.nav-dropdown.open .mega-menu,
.occasions-dropdown.open .mega-menu {
    opacity: 1;

    visibility: visible;

    transform: translateX(-50%) translateY(0);
}


/* =========================================================
   MEGA MENU
========================================================= */

.mega-menu {
    width: min(1100px, calc(100vw - 32px));

    padding: 38px;

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 28px;

    background: rgba(255, 255, 255, 0.98);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-top: 2px solid var(--pink);

    border-radius: 0 0 30px 30px;

    box-shadow: 0 25px 70px rgba(63, 52, 57, 0.15);
}

.mega-column {
    padding: 5px 20px;

    border-right: 1px solid rgba(63, 52, 57, 0.08);
}

.mega-column:last-child {
    border-right: none;
}

.mega-heading {
    display: flex;
    align-items: flex-start;

    gap: 14px;

    margin-bottom: 22px;
}

.mega-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    border-radius: 50%;

    display: grid;
    place-items: center;

    background: var(--pink-light);

    color: var(--pink-dark);

    font-size: 18px;
}

.mega-heading h3 {
    font-family: "Playfair Display", serif;

    font-size: 22px;

    font-weight: 500;

    margin-bottom: 3px;
}

.mega-heading p {
    color: var(--text-light);

    font-size: 12px;

    line-height: 1.5;
}

.mega-links {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px 20px;
}

.mega-links a {
    padding: 7px 0;

    font-size: 12px;

    color: var(--text-light);

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.mega-links a::before {
    content: "♡";

    color: var(--pink);

    margin-right: 7px;

    font-size: 9px;
}

.mega-links a:hover {
    color: var(--pink-dark);

    transform: translateX(3px);
}


/* =========================================================
   CUSTOM MENU
========================================================= */

.custom-column {
    background: linear-gradient(
        145deg,
        var(--pink-soft),
        white
    );

    border-radius: 22px;

    padding: 25px;
}

.custom-box p {
    color: var(--text-light);

    font-size: 12px;

    line-height: 1.7;

    margin-bottom: 20px;
}

.custom-link {
    display: inline-flex;

    align-items: center;
    justify-content: space-between;

    width: 100%;

    padding: 12px 18px;

    border-radius: 999px;

    background: var(--pink-dark);

    color: white;

    font-size: 11px;
    font-weight: 700;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.custom-link:hover {
    background: var(--text);

    transform: translateY(-2px);
}


/* =========================================================
   CART / CTA
========================================================= */

.nav-cta {
    padding: 12px 22px;

    border-radius: 999px;

    background: var(--text);

    color: white;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.5px;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.nav-cta:hover {
    background: var(--pink-dark);

    transform: translateY(-2px);
}

.cart-link {
    display: flex;
    align-items: center;

    gap: 10px;

    padding-left: 25px;

    border-left: 1px solid var(--border);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1px;

    white-space: nowrap;
}

.cart-link i {
    font-size: 15px;

    color: var(--pink-dark);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.nav-menu-toggle {
    display: none;

    flex-direction: column;
    justify-content: space-between;

    width: 30px;
    height: 22px;

    padding: 0;

    border: none;

    background: transparent;
}

.nav-menu-toggle span {
    display: block;

    height: 3px;

    border-radius: 999px;

    background: var(--text);

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.nav-overlay {
    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, 0.18);

    opacity: 0;
    visibility: hidden;

    transition: opacity 0.25s ease;

    z-index: 90;
}

.nav-open .nav-overlay {
    opacity: 1;
    visibility: visible;
}

.nav-mobile {
    display: none;

    position: fixed;

    top: 0;
    left: 0;

    width: min(340px, 100%);

    height: 100vh;

    padding: 100px 25px 30px;

    background: rgba(255, 250, 247, 0.98);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow: 0 30px 80px rgba(63, 52, 57, 0.18);

    transform: translateX(-100%);

    transition: transform 0.3s ease;

    z-index: 95;

    overflow-y: auto;
}

.nav-open .nav-mobile {
    transform: translateX(0);
}

.nav-mobile .nav-links {
    display: grid;

    gap: 18px;

    width: 100%;
}

.nav-mobile .nav-link {
    font-size: 14px;
}

.nav-mobile .nav-links > .nav-dropdown {
    position: static;
}

.nav-mobile .mega-menu,
.nav-mobile .dropdown-menu {
    position: static;

    width: 100%;

    transform: none;

    opacity: 0;
    visibility: hidden;

    max-height: 0;

    overflow: hidden;

    transition:
        opacity 0.25s ease,
        max-height 0.25s ease,
        visibility 0.25s ease;

    box-shadow: none;

    border: none;

    padding: 0;

    background: transparent;
}

.nav-mobile .nav-dropdown.open > .mega-menu,
.nav-mobile .nav-dropdown.open > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 1200px;
}

.nav-mobile .mega-column {
    padding: 0;

    border: none;
}

.nav-mobile .mega-links {
    display: grid;

    grid-template-columns: 1fr;

    gap: 10px;
}

.nav-mobile .custom-column {
    padding: 0;

    background: none;
}

.nav-mobile .custom-box {
    padding: 0;

    background: none;
}

.nav-mobile .custom-link {
    width: 100%;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 620px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 25%,
            rgba(232, 167, 184, 0.35),
            transparent 28%
        ),
        radial-gradient(
            circle at 85% 70%,
            rgba(199, 162, 123, 0.18),
            transparent 30%
        ),
        var(--pink-soft);
}

.hero::before {
    content: "♡";

    position: absolute;

    left: 5%;
    top: 5%;

    font-family: "Playfair Display", serif;

    font-size: 240px;

    color: rgba(232, 167, 184, 0.08);
}

.hero::after {
    content: "✦";

    position: absolute;

    right: 7%;
    bottom: 2%;

    font-size: 180px;

    color: rgba(199, 162, 123, 0.08);
}

.hero-content {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 760px;

    padding: 30px 20px;
}

.eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--pink-dark);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 18px;
}

.eyebrow::before,
.eyebrow::after {
    content: "✦";

    font-size: 8px;
}

.hero h1,
.section-title {
    font-family: "Playfair Display", serif;
}

.hero h1 {
    font-size: clamp(55px, 8vw, 95px);

    font-weight: 500;

    line-height: 0.98;
}

.hero h1 em {
    color: var(--pink-dark);

    font-weight: 400;
}

.hero p {
    max-width: 570px;

    margin: 25px auto 30px;

    color: var(--text-light);

    font-size: 16px;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 15px 25px;

    border-radius: 999px;

    font-size: 12px;
    font-weight: 700;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

/* Keep dedicated page navigation aligned with the landing page header. */
.page-view-nav {
    position: fixed !important;
    top: 18px !important;
    left: 50% !important;
    width: min(1380px, calc(100% - 40px)) !important;
    height: auto !important;
    transform: translateX(-50%);
    z-index: 9999 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.page-view-nav .nav {
    position: relative;
    justify-content: center;
}

.page-view-nav .logo {
    position: absolute;
    left: 0;
}

.page-view-nav .nav-links {
    width: 100%;
    justify-content: center;
}

.page-view-nav .nav {
    min-height: 64px;
    padding: 8px 22px;
    border: 1px solid rgba(63, 52, 57, 0.08);
    border-radius: 999px;
    background: rgba(255, 250, 247, 0.94);
    box-shadow: 0 12px 35px rgba(63, 52, 57, 0.10);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.page-view-nav.scrolled .nav {
    background: rgba(64, 52, 58, 0.82);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 12px 35px rgba(64, 52, 58, 0.18);
}

.page-view-nav.scrolled .nav-link {
    color: white;
}

.page-view-nav.scrolled .nav-link:hover {
    color: var(--pink-light);
}

@media (max-width: 900px) {
    .page-view-nav {
        top: 10px !important;
        width: calc(100% - 20px) !important;
    }

    .page-view-nav .nav-links {
        justify-content: flex-end;
    }
}

.btn-primary {
    background: var(--pink-dark);

    color: white;

    box-shadow: 0 10px 30px rgba(201, 121, 145, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);

    box-shadow: 0 15px 35px rgba(201, 121, 145, 0.32);
}

.btn-outline {
    border: 1px solid var(--pink);

    color: var(--pink-dark);

    background: transparent;
}

.btn-outline:hover {
    background: var(--pink-light);
}


/* =========================================================
   TITLES
========================================================= */

.section-title {
    font-size: clamp(40px, 5vw, 62px);

    font-weight: 500;

    line-height: 1.08;
}

.section-title em {
    color: var(--pink-dark);

    font-weight: 400;
}

.section-description {
    max-width: 600px;

    margin: 20px auto 0;

    color: var(--text-light);

    font-size: 15px;
}


/* =========================================================
   SERVICES
========================================================= */

.services {
    background: white;
}

.services-grid {
    margin-top: 60px;

    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 20px;
}

.service-card {
    position: relative;

    overflow: hidden;

    padding: 35px 25px;

    border-radius: var(--radius);

    background: var(--pink-soft);

    border: 1px solid rgba(232, 167, 184, 0.2);

    text-align: center;

    transition:
        transform 0.4s ease,
        background 0.4s ease,
        box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);

    background: white;

    box-shadow: var(--shadow);
}

.service-icon {
    width: 68px;
    height: 68px;

    margin: 0 auto 22px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    background: white;

    color: var(--pink-dark);

    font-size: 23px;

    box-shadow: 0 8px 20px rgba(63, 52, 57, 0.06);
}

.service-card h3 {
    font-family: "Playfair Display", serif;

    font-size: 23px;

    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-light);

    font-size: 13px;
}


/* =========================================================
   BALLOON MENU
========================================================= */

.balloon-menu-section {
    margin-top: 80px;

    padding-top: 60px;

    border-top: 1px solid rgba(232, 167, 184, 0.2);
}

.menu-heading {
    margin-bottom: 50px;
}

.balloon-menu-grid {
    margin-top: 50px;

    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 25px;
}

.menu-card {
    overflow: hidden;

    border-radius: var(--radius);

    background: white;

    border: 1px solid rgba(232, 167, 184, 0.15);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;

    display: flex;

    flex-direction: column;

    height: 100%;
}

.menu-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow);

    border-color: rgba(232, 167, 184, 0.4);
}

.menu-image-wrap {
    width: 100%;

    height: 240px;

    overflow: hidden;

    border-radius: var(--radius) var(--radius) 0 0;

    background: var(--pink-light);
}

.menu-image-wrap img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    transition: transform 0.4s ease;
}

.menu-card:hover .menu-image-wrap img {
    transform: scale(1.05);
}

.menu-card-body {
    padding: 25px 20px;

    display: flex;

    flex-direction: column;

    flex-grow: 1;
}

.menu-card-body h4 {
    font-family: "Playfair Display", serif;

    font-size: 18px;

    font-weight: 500;

    margin-bottom: 10px;

    color: var(--text);
}

.menu-description {
    color: var(--text-light);

    font-size: 13px;

    margin-bottom: 15px;

    flex-grow: 1;
}

.menu-price {
    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    margin-bottom: 16px;

    gap: 4px;
}

.menu-price span {
    font-size: 11px;

    color: var(--text-light);

    text-transform: uppercase;

    letter-spacing: 0.5px;
}

.menu-price strong {
    font-family: "Playfair Display", serif;

    font-size: 22px;

    color: var(--pink-dark);

    font-weight: 600;
}

.menu-btn {
    width: 100%;

    padding: 12px 15px;

    font-size: 11px;

    letter-spacing: 0.5px;
}

.menu-disclaimer {
    text-align: center;

    margin-top: 40px;

    padding: 25px;

    background: var(--pink-soft);

    border-radius: 20px;

    border: 1px solid rgba(232, 167, 184, 0.2);
}

.menu-disclaimer p {
    font-size: 12px;

    color: var(--text-light);

    line-height: 1.6;

    max-width: 800px;

    margin: 0 auto;
}


/* =========================================================
   ABOUT
========================================================= */

.about {
    background: var(--pink-soft);
}

.about-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.about-visual {
    min-height: 530px;

    border-radius: 40px;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #f4c8d4,
            #fceff2
        );
}

.about-visual::before {
    content: "B";

    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    font-family: "Playfair Display", serif;

    font-size: 400px;

    color: rgba(255, 255, 255, 0.35);
}

.about-floating {
    position: absolute;

    left: 30px;
    right: 30px;
    bottom: 30px;

    padding: 20px;

    border-radius: 20px;

    text-align: center;

    background: rgba(255, 255, 255, 0.88);

    backdrop-filter: blur(12px);
}

.about-floating strong {
    display: block;

    font-family: "Playfair Display", serif;

    font-size: 24px;
}

.about-floating span {
    color: var(--text-light);

    font-size: 12px;
}

.about-text p {
    color: var(--text-light);

    font-size: 15px;

    margin: 20px 0;
}

.about-list {
    display: grid;

    gap: 12px;

    margin: 25px 0;
}

.about-list li {
    list-style: none;

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 14px;

    font-weight: 600;
}

.about-list i {
    color: var(--pink-dark);
}


/* =========================================================
   GALLERY
========================================================= */

.gallery {
    background: white;
}

.filter-bar {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 12px;

    margin-top: 40px;
}

.filter-button {
    padding: 12px 18px;

    border-radius: 999px;

    border: 1px solid rgba(201, 121, 145, 0.35);

    background: white;

    color: var(--text);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.8px;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        border-color 0.25s ease;
}

.filter-button.active,
.filter-button:hover {
    background: var(--pink-soft);

    border-color: var(--pink);

    transform: translateY(-1px);
}


/* =========================================================
   GALLERY GRID — MAIN FIX
========================================================= */

.design-grid {
    width: 100%;

    margin-top: 40px;

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 24px;
}


/* =========================================================
   GALLERY CARD
========================================================= */

.design-card {
    position: relative;

    width: 100%;
    min-width: 0;

    overflow: hidden;

    border-radius: 30px;

    background: white;

    box-shadow: 0 18px 50px rgba(63, 52, 57, 0.08);

    transition: transform 0.3s ease;
}

.design-card:hover {
    transform: translateY(-6px);
}


/* =========================================================
   GALLERY IMAGE CONTAINER
========================================================= */

.gallery-thumb {
    display: block;

    position: relative;

    width: 100%;
    height: 340px;

    overflow: hidden;

    margin: 0;
    padding: 0;

    background: #f9f0f3;
}


/* =========================================================
   GALLERY IMAGE
   CONTAIN = WHOLE IMAGE FITS
========================================================= */

.gallery-thumb img {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    max-width: none !important;
    max-height: none !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain !important;
    object-position: center center !important;

    transition: transform 0.5s ease;
}

.design-card:hover .gallery-thumb img {
    transform: scale(1.03);
}


/* =========================================================
   OTHER DESIGN IMAGE
========================================================= */

.design-image {
    position: relative;

    width: 100%;
    height: 340px;

    overflow: hidden;

    background: #f9f0f3;
}

.design-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    object-position: center;

    transition: transform 0.6s ease;
}

.design-card:hover .design-image img,
.design-card.focused .design-image img {
    transform: scale(1.04);
}


/* =========================================================
   DESIGN PANEL
========================================================= */

.design-panel {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: grid;

    align-items: flex-end;

    pointer-events: none;
}

.design-panel-inner {
    width: 100%;

    padding: 24px;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.94) 55%,
            rgba(255, 255, 255, 0.98) 100%
        );

    transform: translateX(100%);

    transition: transform 0.45s ease;

    pointer-events: auto;
}

.design-card:hover .design-panel-inner,
.design-card.focused .design-panel-inner {
    transform: translateX(0);
}

.design-meta {
    display: grid;

    gap: 10px;

    max-width: 280px;
}

.design-category {
    font-size: 11px;

    letter-spacing: 1.6px;

    text-transform: uppercase;

    color: var(--pink-dark);
}

.design-title {
    font-family: "Playfair Display", serif;

    font-size: 24px;

    line-height: 1.1;
}

.design-text {
    color: var(--text-light);

    font-size: 13px;

    line-height: 1.7;
}

.design-action {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 14px;

    color: var(--pink-dark);

    font-weight: 700;

    font-size: 12px;
}


/* =========================================================
   INSTAGRAM
========================================================= */

.instagram-section {
    background: var(--pink-soft);

    text-align: center;
}

.instagram-box {
    max-width: 850px;

    margin: auto;

    padding: 70px 30px;

    background: white;

    border-radius: 40px;

    box-shadow: var(--shadow);
}

.instagram-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 20px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    background: var(--pink-light);

    color: var(--pink-dark);

    font-size: 25px;
}

.instagram-box h2 {
    font-family: "Playfair Display", serif;

    font-size: 42px;

    margin-bottom: 12px;
}

.instagram-box p {
    color: var(--text-light);

    margin-bottom: 25px;
}


/* =========================================================
   QUOTE / CONTACT
========================================================= */

.quote-section {
    background: var(--text);

    color: white;
}

.quote-grid {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 80px;

    align-items: start;
}

.quote-section .eyebrow {
    color: var(--pink);
}

.quote-section .section-title {
    color: white;

    margin-bottom: 20px;
}

.quote-section p {
    color: rgba(255, 255, 255, 0.72);

    font-size: 15px;
}

.contact-info {
    display: grid;

    gap: 15px;

    margin-top: 30px;
}

.contact-info a,
.contact-info > div {
    display: flex;

    align-items: center;

    gap: 13px;

    color: rgba(255, 255, 255, 0.85);

    font-size: 14px;
}

.contact-info a:hover {
    color: var(--pink);
}

.contact-info i {
    width: 36px;
    height: 36px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);

    color: var(--pink);
}


/* =========================================================
   FORM
========================================================= */

.quote-form {
    padding: 35px;

    border-radius: 30px;

    background: white;

    color: var(--text);
}

.form-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 16px;
}

.form-group {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 14px 16px;

    border: 1px solid var(--border);

    border-radius: 14px;

    background: var(--cream);

    color: var(--text);

    outline: none;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--pink);

    box-shadow:
        0 0 0 3px rgba(232, 167, 184, 0.12);
}

.form-group textarea {
    min-height: 140px;

    resize: vertical;
}

.quote-form .btn {
    width: 100%;

    border: none;

    margin-top: 20px;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    background: #30272a;

    color: white;

    padding: 60px 0 25px;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr;

    gap: 60px;

    padding-bottom: 45px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-logo {
    display: block;

    width: 230px;
    height: auto;

    max-width: 100%;

    object-fit: contain;

    object-position: left center;
}

.footer-description {
    max-width: 330px;

    margin-top: 15px;

    color: rgba(255, 255, 255, 0.6);

    font-size: 13px;
}

.footer-title {
    color: var(--pink);

    font-size: 10px;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 20px;
}

.footer-links {
    display: grid;

    gap: 12px;
}

.footer-links a,
.footer-links span {
    color: rgba(255, 255, 255, 0.65);

    font-size: 13px;
}

.footer-links a:hover {
    color: white;

    transform: translateX(3px);
}

.social-icons {
    display: flex;

    gap: 10px;

    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);

    color: white;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.social-icons a:hover {
    background: var(--pink-dark);

    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 22px;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: rgba(255, 255, 255, 0.4);

    font-size: 11px;
}


/* =========================================================
   CATEGORY PAGES
========================================================= */

.category-grid {
    margin-top: 40px;

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 24px;
}

.category-card {
    position: relative;

    min-height: 260px;

    display: flex;

    align-items: flex-end;

    padding: 28px;

    border-radius: 30px;

    overflow: hidden;

    background-size: cover;

    background-position: center;

    color: var(--white);

    box-shadow:
        0 24px 60px rgba(63, 52, 57, 0.14);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.category-card::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.05) 0%,
            rgba(0, 0, 0, 0.55) 100%
        );
}

.category-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 28px 80px rgba(63, 52, 57, 0.18);
}

.category-card .category-copy {
    position: relative;

    z-index: 1;
}

.category-label {
    display: inline-flex;

    margin-bottom: 12px;

    font-size: 11px;

    letter-spacing: 1.7px;

    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.9);
}

.category-title {
    font-family: "Playfair Display", serif;

    font-size: 26px;

    line-height: 1.05;

    max-width: 90%;
}


/* =========================================================
   PAGE INTRO
========================================================= */

.page-intro {
    max-width: 760px;

    margin: 0 auto;
}

.page-intro p {
    color: var(--text-light);

    margin-top: 18px;

    font-size: 15px;
}


/* =========================================================
   SELECTED DESIGN
========================================================= */

.selected-design-box {
    margin-top: 24px;

    padding: 24px;

    border-radius: 30px;

    background: white;

    box-shadow:
        0 12px 40px rgba(63, 52, 57, 0.08);
}

.selected-design-box strong {
    display: block;

    font-size: 16px;

    margin-bottom: 8px;
}

.selected-design-box span {
    color: var(--text-light);
}


/* =========================================================
   CUSTOM PAGE
========================================================= */

.custom-page form {
    max-width: 860px;

    margin: 0 auto;
}

.custom-page .contact-panel {
    display: grid;

    gap: 18px;

    margin-top: 40px;

    background: white;

    padding: 28px;

    border-radius: 30px;

    box-shadow: var(--shadow);
}

.custom-page .contact-panel a {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--text);

    font-size: 14px;
}

.custom-page .contact-panel a i {
    color: var(--pink-dark);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .nav {
        width: 94%;
        gap: 18px;
    }

    .nav > .logo {
        flex: 0 0 200px;

        width: 200px;
        height: 58px;
    }

    .nav > .logo img,
    .nav > .logo .site-logo {
        width: 200px !important;
        height: 58px !important;

        max-width: 200px !important;
        max-height: 58px !important;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-link {
        font-size: 10px;

        letter-spacing: 1px;
    }

    .mega-menu {
        width: 95vw;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .design-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-thumb,
    .design-image {
        height: 320px;
    }
}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 900px) {

    header {
        height: 70px;
    }

    .nav {
        width: 92%;
        height: 70px;

        gap: 15px;
    }

    /* MOBILE LOGO */

    .nav > .logo {
        flex: 0 0 150px;

        width: 150px;
        height: 48px;
    }

    .nav > .logo img,
    .nav > .logo .site-logo {
        width: 150px !important;
        height: 48px !important;

        max-width: 150px !important;
        max-height: 48px !important;
    }

    /* MOBILE MENU */

    .nav-menu-toggle {
        display: flex !important;

        margin-left: auto;

        flex-shrink: 0;
    }

    .nav > .nav-links {
        display: none !important;
    }

    .nav-cta {
        display: none;
    }

    .nav-mobile {
        display: block;
    }

    /* CONTENT */

    .about-grid,
    .quote-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* GALLERY */

    .design-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 18px;
    }

    .gallery-thumb,
    .design-image {
        height: 300px;
    }

    /* FOOTER */

    .footer-bottom {
        flex-direction: column;

        text-align: center;
    }

    .footer-grid {
        gap: 40px;
    }

    .section {
        padding: 70px 0;
    }

    .quote-form {
        padding: 30px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .container {
        width: 92%;
    }

    /* HEADER */

    header {
        height: 65px;
    }

    .nav {
        width: 92%;
        height: 65px;
    }

    /* LOGO */

    .nav > .logo {
        flex: 0 0 135px;

        width: 135px;
        height: 45px;
    }

    .nav > .logo img,
    .nav > .logo .site-logo {
        width: 135px !important;
        height: 45px !important;

        max-width: 135px !important;
        max-height: 45px !important;
    }

    /* GRIDS */

    .services-grid,
    .design-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    /* GALLERY */

    .gallery-thumb,
    .design-image {
        height: 360px;
    }

    /* FORM */

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: auto;
    }

    .quote-form {
        padding: 25px 20px;
    }

    /* INSTAGRAM */

    .instagram-box {
        padding: 50px 22px;
    }

    .instagram-box h2 {
        font-size: 34px;
    }

    /* HERO */

    .hero {
        min-height: 580px;
    }

    .hero h1 {
        font-size: clamp(45px, 14vw, 70px);
    }

    .hero p {
        font-size: 14px;
    }

    /* ABOUT */

    .about-visual {
        min-height: 400px;
    }

    .about-visual::before {
        font-size: 280px;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 500px) {

    header {
        height: 62px;
    }

    .nav {
        height: 62px;

        width: 92%;
    }

    /* LOGO */

    .nav > .logo {
        flex: 0 0 120px;

        width: 120px;
        height: 40px;
    }

    .nav > .logo img,
    .nav > .logo .site-logo {
        width: 120px !important;
        height: 40px !important;

        max-width: 120px !important;
        max-height: 40px !important;
    }

    /* HAMBURGER */

    .nav-menu-toggle {
        width: 27px;
        height: 20px;
    }

    /* GALLERY */

    .gallery-thumb,
    .design-image {
        height: 330px;
    }

    /* CATEGORY */

    .category-card {
        min-height: 220px;

        padding: 22px;
    }

    /* FOOTER */

    .footer-grid {
        gap: 40px;
    }

    .footer-brand-logo {
        width: 190px;
    }
}


/* =========================================================
   EXTRA SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .nav {
        width: 90%;
    }

    .nav > .logo {
        flex: 0 0 105px;

        width: 105px;
        height: 36px;
    }

    .nav > .logo img,
    .nav > .logo .site-logo {
        width: 105px !important;
        height: 36px !important;

        max-width: 105px !important;
        max-height: 36px !important;
    }

    .nav-menu-toggle {
        width: 25px;
        height: 19px;
    }

    .gallery-thumb,
    .design-image {
        height: 300px;
    }

    .hero h1 {
        font-size: 43px;
    }

    .hero-content {
        padding-left: 15px;
        padding-right: 15px;
    }

    .btn {
        padding: 13px 20px;

        font-size: 11px;
    }

    .footer-brand-logo {
        width: 170px;
    }
}


/* =========================================================
   MEGA MENU FIX - Prevent left overflow
========================================================= */

.mega-menu {
    width: min(1100px, calc(100vw - 32px));

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 28px;

    background: rgba(255, 255, 255, 0.98);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-top: 2px solid var(--pink);

    border-radius: 0 0 30px 30px;

    box-shadow: 0 25px 70px rgba(63, 52, 57, 0.15);

    /* Fix positioning to prevent left overflow */
    left: 50%;

    transform: translateX(-50%) translateY(12px);

    max-width: calc(100vw - 32px);

    margin-left: 0;

    position: absolute;

    top: 100%;

    padding: 34px 44px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;

    z-index: 999;
}

.nav-dropdown:hover .mega-menu,
.nav-dropdown.open .mega-menu,
.occasions-dropdown.open .mega-menu {
    opacity: 1;

    visibility: visible;

    transform: translateX(-50%) translateY(0);
}

.mega-column {
    min-width: 0;
    padding: 5px 16px;
}

.mega-links {
    gap: 10px 18px;
}

.mega-links a {
    min-width: 0;
}

/* =========================================================
   FOOTER LOGO FIX
========================================================= */

.footer-logo-link {
    display: inline-block;

    width: 100%;

    margin-bottom: 10px;
}

.footer-brand-logo {
    display: block;

    width: 180px;
    height: auto;

    max-width: 100%;

    object-fit: contain;

    object-position: left center;
}

/* =========================================================
   BALLOON MENU
========================================================= */

.balloon-menu-section {
    margin-top: 80px;

    padding-top: 60px;

    border-top: 1px solid rgba(232, 167, 184, 0.2);
}

.menu-heading {
    margin-bottom: 50px;
}

.balloon-menu-grid {
    margin-top: 50px;

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 25px;
}

.menu-card {
    overflow: hidden;

    border-radius: var(--radius);

    background: white;

    border: 1px solid rgba(232, 167, 184, 0.15);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;

    display: flex;

    flex-direction: column;

    height: 100%;
}

.menu-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow);

    border-color: rgba(232, 167, 184, 0.4);
}

.menu-image-wrap {
    width: 100%;

    height: 240px;

    overflow: hidden;

    border-radius: var(--radius) var(--radius) 0 0;

    background: var(--pink-light);
}

.menu-image-wrap img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    transition: transform 0.4s ease;
}

.menu-card:hover .menu-image-wrap img {
    transform: scale(1.05);
}

.menu-card-body {
    padding: 25px 20px;

    display: flex;

    flex-direction: column;

    flex-grow: 1;
}

.menu-card-body h4 {
    font-family: "Playfair Display", serif;

    font-size: 18px;

    font-weight: 500;

    margin-bottom: 10px;

    color: var(--text);
}

.menu-description {
    color: var(--text-light);

    font-size: 13px;

    margin-bottom: 15px;

    flex-grow: 1;
}

.menu-price {
    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    margin-bottom: 16px;

    gap: 4px;
}

.menu-price span {
    font-size: 11px;

    color: var(--text-light);

    text-transform: uppercase;

    letter-spacing: 0.5px;
}

.menu-price strong {
    font-family: "Playfair Display", serif;

    font-size: 22px;

    color: var(--pink-dark);

    font-weight: 600;
}

.menu-btn {
    width: 100%;

    padding: 12px 15px;

    font-size: 11px;

    letter-spacing: 0.5px;
}

.menu-disclaimer {
    text-align: center;

    margin-top: 40px;

    padding: 25px;

    background: var(--pink-soft);

    border-radius: 20px;

    border: 1px solid rgba(232, 167, 184, 0.2);
}

.menu-disclaimer p {
    font-size: 12px;

    color: var(--text-light);

    line-height: 1.6;

    max-width: 800px;

    margin: 0 auto;
}

/* =========================================================
   CART PANEL
========================================================= */

.cart-panel {
    position: fixed;

    top: 0;
    right: 0;

    width: 100%;
    max-width: 420px;

    height: 100vh;

    background: white;

    box-shadow: -10px 0 40px rgba(63, 52, 57, 0.2);

    z-index: 9999;

    transform: translateX(100%);

    transition: transform 0.3s ease;

    display: flex;

    flex-direction: column;

    overflow-y: auto;
}

.cart-panel.open {
    transform: translateX(0);
}

.cart-panel-header {
    padding: 25px;

    border-bottom: 1px solid var(--border);

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-shrink: 0;
}

.cart-panel-header h3 {
    font-family: "Playfair Display", serif;

    font-size: 24px;

    font-weight: 500;

    margin: 0;
}

.cart-close-btn {
    background: none;

    border: none;

    font-size: 24px;

    color: var(--text);

    cursor: pointer;

    padding: 5px;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: color 0.2s ease;
}

.cart-close-btn:hover {
    color: var(--pink-dark);
}

.cart-items-container {
    flex-grow: 1;

    overflow-y: auto;

    padding: 25px;
}

.cart-items {
    display: flex;

    flex-direction: column;

    gap: 15px;
}

.cart-item {
    padding: 15px;

    background: var(--pink-soft);

    border-radius: 12px;

    border: 1px solid rgba(232, 167, 184, 0.3);

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 15px;
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-name {
    font-weight: 600;

    font-size: 14px;

    color: var(--text);

    margin-bottom: 5px;
}

.cart-item-price {
    font-size: 13px;

    color: var(--pink-dark);

    font-weight: 600;
}

.cart-item-remove {
    background: none;

    border: none;

    color: var(--pink-dark);

    cursor: pointer;

    font-size: 18px;

    padding: 5px;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: color 0.2s ease;
}

.cart-item-remove:hover {
    color: var(--text);
}

.empty-cart-message {
    text-align: center;

    padding: 40px 20px;

    color: var(--text-light);
}

.empty-cart-message p {
    font-size: 14px;

    line-height: 1.6;

    margin-bottom: 10px;
}

.cart-panel-footer {
    padding: 25px;

    border-top: 1px solid var(--border);

    flex-shrink: 0;

    background: white;
}

.cart-summary {
    margin-bottom: 20px;

    padding-bottom: 15px;

    border-bottom: 1px solid var(--border);
}

.cart-total {
    display: flex;

    justify-content: space-between;

    align-items: center;

    font-size: 16px;

    color: var(--text);
}

.cart-total strong {
    font-family: "Playfair Display", serif;

    font-size: 20px;

    color: var(--pink-dark);

    font-weight: 600;
}

.full-width {
    width: 100%;
}

.cart-overlay {
    position: fixed;

    top: 0;
    left: 0;

    right: 0;
    bottom: 0;

    background: rgba(0, 0, 0, 0.5);

    z-index: 9998;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.cart-overlay.open {
    opacity: 1;

    visibility: visible;
}

.cart-count {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 20px;
    height: 20px;

    background: var(--pink-dark);

    color: white;

    border-radius: 50%;

    font-size: 11px;

    font-weight: 700;

    margin-left: 8px;
}

/* =========================================================
   RESPONSIVE DESIGN - BALLOON MENU & CART
========================================================= */

/* Tablets and smaller */
@media (max-width: 1024px) {
    .balloon-menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .mega-menu {
        grid-template-columns: 1fr 1fr;

        padding: 30px 36px;
    }

    .mega-column:nth-child(3) {
        grid-column: 1 / -1;
    }
}

/* Mobile phones */
@media (max-width: 768px) {
    .balloon-menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

        gap: 15px;
    }

    .menu-image-wrap {
        height: 180px;
    }

    .menu-card-body {
        padding: 15px;
    }

    .menu-card-body h4 {
        font-size: 16px;
    }

    .menu-description {
        font-size: 12px;
    }

    .menu-price strong {
        font-size: 18px;
    }

    .cart-panel {
        max-width: 100%;
    }

    .mega-menu {
        grid-template-columns: 1fr;

        padding: 20px 24px;

        width: min(680px, calc(100vw - 24px));
        max-width: calc(100vw - 24px);
    }

    .mega-column {
        padding: 10px;

        border-right: none;

        border-bottom: 1px solid rgba(63, 52, 57, 0.08);
    }

    .mega-column:last-child {
        border-bottom: none;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .balloon-menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-image-wrap {
        height: 200px;
    }

    .cart-panel {
        max-width: 100%;
    }

    .menu-btn {
        padding: 10px 12px;

        font-size: 10px;
    }
}


/* =========================================================
   FINAL SAFETY
========================================================= */

html,
body {
    overflow-x: hidden;
}

img {
    image-rendering: auto;
}

/* Site-wide typography */
body,
body p,
body span,
body label,
body input,
body select,
body textarea,
body button,
body .btn,
body .footer,
body footer {
    font-family: "ABeeZee", sans-serif !important;
}

body [class]:not(i) {
    font-family: "ABeeZee", sans-serif !important;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
    font-family: "ABeeZee", sans-serif !important;
}

body .hero h1,
body .section-title,
body .hero h1 em,
body .section-title em,
body .category-hero h1,
body .category-hero h1 em {
    font-family: "Parisienne", cursive !important;
    font-weight: 400;
}

nav,
nav a,
nav button,
nav span,
nav .nav-link,
nav .dropdown-link {
    font-family: "Montserrat", sans-serif !important;
}

.cart-item-price,
.cart-total {
    display: none !important;
}

/* Opening balloon celebration */
.float-balloon,
.opening-balloon {
    position: fixed;
    bottom: -150px;
    z-index: 1001;
    width: 82px;
    height: 108px;
    border-radius: 50% 50% 48% 48%;
    box-shadow: inset -12px -15px 20px rgba(255, 255, 255, 0.35), 0 16px 28px rgba(63, 52, 57, 0.14);
    pointer-events: none;
    animation: balloon-float-up 3.8s ease-in forwards;
}

.float-balloon::after,
.opening-balloon::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -76px;
    width: 1px;
    height: 76px;
    background: rgba(63, 52, 57, 0.25);
    transform: translateX(-50%);
}

.opening-balloon {
    width: 126px;
    height: 166px;
    bottom: -190px;
    animation-duration: 2.1s;
}

.opening-balloon.pop {
    animation: balloon-pop 0.42s ease-in forwards;
}

.confetti-piece {
    position: fixed;
    z-index: 1002;
    width: 9px;
    height: 15px;
    border-radius: 2px;
    pointer-events: none;
    animation: confetti-fall 1.8s ease-out forwards;
}

@keyframes balloon-float-up {
    0% { transform: translateY(0) rotate(-5deg) scale(0.8); opacity: 0; }
    15% { opacity: 1; }
    100% { transform: translateY(-115vh) rotate(12deg) scale(1); opacity: 0; }
}

@keyframes balloon-pop {
    0% { transform: scale(1); opacity: 1; }
    70% { transform: scale(1.18); opacity: 1; }
    100% { transform: scale(0); opacity: 0; }
}

@keyframes confetti-fall {
    0% { transform: translate(0, 0) rotate(0deg); opacity: 1; }
    100% { transform: translate(var(--confetti-x), 220px) rotate(540deg); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .float-balloon,
    .opening-balloon,
    .confetti-piece {
        animation: none;
        display: none;
    }
}

/* =========================================================
   BALLOONAIRE FINAL OVERRIDES
   LARGE LOGO + STICKY TRANSPARENT NAV + GIANT BALLOON
   ========================================================= */

/* ---------------------------------------------------------
   HEADER / NAVIGATION
   --------------------------------------------------------- */

header {
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 78px !important;
    z-index: 9999 !important;

    background: transparent !important;
    border: none !important;
    box-shadow: none !important;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;

    transition:
        background 0.3s ease,
        backdrop-filter 0.3s ease,
        box-shadow 0.3s ease;
}

.nav {
    width: min(1500px, 96%) !important;
    height: 78px !important;
    margin: 0 auto !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    gap: 25px !important;
}

/* ---------------------------------------------------------
   LARGE LOGO
   The square source is cropped into a wide navigation area.
   --------------------------------------------------------- */

.nav > .logo {
    position: relative !important;

    flex: 0 0 210px !important;
    width: 210px !important;
    height: 60px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;

    overflow: hidden !important;

    margin: 0 !important;
    padding: 0 !important;

    flex-shrink: 0 !important;

    font-size: 0 !important;
    line-height: 0 !important;
}

.nav > .logo img,
.nav > .logo .site-logo {
    display: block !important;

    width: 210px !important;
    height: 60px !important;

    min-width: 0 !important;
    min-height: 0 !important;

    max-width: none !important;
    max-height: none !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: cover !important;
    object-position: center center !important;

    border: none !important;
}

/* ---------------------------------------------------------
   DESKTOP NAV LINKS
   --------------------------------------------------------- */

.nav-links {
    flex: 1 1 auto !important;
    min-width: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;

    gap: 22px !important;
}

.nav-link {
    white-space: nowrap !important;
}

.nav-cta {
    flex-shrink: 0 !important;
}

/* ---------------------------------------------------------
   SCROLLED NAV
   Remains transparent with a subtle glass/blur effect.
   --------------------------------------------------------- */

header.scrolled {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
}

/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 1100px) {

    header {
        height: 78px !important;
    }

    .nav {
        height: 78px !important;
        width: 95% !important;
    }

    .nav > .logo {
        flex: 0 0 180px !important;
        width: 180px !important;
        height: 58px !important;
    }

    .nav > .logo img,
    .nav > .logo .site-logo {
        width: 180px !important;
        height: 58px !important;

        min-width: 0 !important;
        min-height: 0 !important;
    }

    .nav-links {
        gap: 14px !important;
    }
}

/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 900px) {

    header {
        height: 82px !important;
    }

    .nav {
        width: 94% !important;
        height: 82px !important;
        gap: 12px !important;
    }

    .nav > .logo {
        flex: 0 0 150px !important;
        width: 150px !important;
        height: 48px !important;
    }

    .nav > .logo img,
    .nav > .logo .site-logo {
        width: 150px !important;
        height: 48px !important;

        min-width: 0 !important;
        min-height: 0 !important;
    }

    .nav > .nav-links {
        display: none !important;
    }

    .nav-cta {
        display: none !important;
    }

    .nav-menu-toggle {
        display: flex !important;
        margin-left: auto !important;
        flex-shrink: 0 !important;
        z-index: 10000 !important;
    }
}

/* ---------------------------------------------------------
   SMALL PHONES
   --------------------------------------------------------- */

@media (max-width: 500px) {

    header {
        height: 76px !important;
    }

    .nav {
        width: 94% !important;
        height: 76px !important;
    }

    .nav > .logo {
        flex: 0 0 120px !important;
        width: 120px !important;
        height: 40px !important;
    }

    .nav > .logo img,
    .nav > .logo .site-logo {
        width: 120px !important;
        height: 40px !important;

        min-width: 0 !important;
        min-height: 0 !important;
    }
}

/* ---------------------------------------------------------
   VERY SMALL PHONES
   --------------------------------------------------------- */

@media (max-width: 380px) {

    header {
        height: 70px !important;
    }

    .nav {
        height: 70px !important;
    }

    .nav > .logo {
        flex: 0 0 105px !important;
        width: 105px !important;
        height: 36px !important;
    }

    .nav > .logo img,
    .nav > .logo .site-logo {
        width: 105px !important;
        height: 36px !important;

        min-width: 0 !important;
        min-height: 0 !important;
    }
}

/* ---------------------------------------------------------
   FINAL LOGO OVERRIDE
   Prevents old responsive rules from shrinking the logo.
   --------------------------------------------------------- */

.nav > .logo img,
.nav > .logo .site-logo {
    max-width: none !important;
    max-height: none !important;
}


/* =========================================================
   GIANT OPENING BALLOON
   CSS only handles appearance/animation.
   JavaScript creates it on every page load.
   ========================================================= */

.opening-balloon {
    position: fixed !important;

    left: 50% !important;
    bottom: -380px !important;

    width: 250px !important;
    height: 330px !important;

    transform: translateX(-50%) !important;

    z-index: 99999 !important;
    pointer-events: none !important;

    border-radius: 50% 50% 48% 48% !important;

    opacity: 1 !important;

    background:
        radial-gradient(
            circle at 32% 25%,
            rgba(255,255,255,0.9) 0%,
            rgba(255,255,255,0.35) 8%,
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #f7a8c0 0%,
            #e987a6 45%,
            #c96889 100%
        ) !important;

    box-shadow:
        inset -25px -35px 45px rgba(130, 45, 75, 0.22),
        inset 25px 15px 35px rgba(255,255,255,0.35),
        0 30px 70px rgba(63,52,57,0.22) !important;

    animation:
        giant-balloon-rise
        3.4s
        cubic-bezier(.2,.8,.2,1)
        forwards !important;
}

.opening-balloon::before {
    content: "";

    position: absolute;

    width: 45px;
    height: 80px;

    left: 48px;
    top: 48px;

    border-radius: 50%;

    background: rgba(255,255,255,0.32);

    transform: rotate(25deg);

    filter: blur(2px);
}

.opening-balloon::after {
    content: "";

    position: absolute;

    left: 50%;
    top: 100%;

    width: 2px;
    height: 180px;

    background: rgba(63,52,57,0.3);

    transform: translateX(-50%);
}

/* ---------------------------------------------------------
   GIANT BALLOON RISE
   --------------------------------------------------------- */

@keyframes giant-balloon-rise {

    0% {
        bottom: -380px;

        transform:
            translateX(-50%)
            rotate(-6deg)
            scale(0.75);

        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    35% {
        transform:
            translateX(-50%)
            rotate(5deg)
            scale(1);
    }

    60% {
        transform:
            translateX(-50%)
            rotate(-3deg)
            scale(1.05);
    }

    72% {
        bottom: 42vh;

        transform:
            translateX(-50%)
            rotate(2deg)
            scale(1.08);
    }

    78% {
        bottom: 43vh;

        transform:
            translateX(-50%)
            rotate(0deg)
            scale(1.08);
    }

    100% {
        bottom: 43vh;

        transform:
            translateX(-50%)
            rotate(0deg)
            scale(1.08);
    }
}

/* ---------------------------------------------------------
   BALLOON POP
   --------------------------------------------------------- */

.opening-balloon.pop {
    animation:
        giant-balloon-pop
        0.45s
        cubic-bezier(.2,.9,.3,1)
        forwards !important;
}

@keyframes giant-balloon-pop {

    0% {
        transform:
            translateX(-50%)
            scale(1.08);

        opacity: 1;
    }

    35% {
        transform:
            translateX(-50%)
            scale(1.25);

        opacity: 1;
    }

    65% {
        transform:
            translateX(-50%)
            scale(1.5);

        opacity: 0.75;
    }

    100% {
        transform:
            translateX(-50%)
            scale(0);

        opacity: 0;
    }
}


/* =========================================================
   CONFETTI
   ========================================================= */

.confetti-piece {
    position: fixed !important;

    width: 11px !important;
    height: 18px !important;

    border-radius: 2px !important;

    z-index: 100000 !important;

    pointer-events: none !important;

    opacity: 1;

    animation:
        confetti-explode
        2.2s
        cubic-bezier(.15,.7,.3,1)
        forwards !important;
}

@keyframes confetti-explode {

    0% {
        transform:
            translate(0,0)
            rotate(0deg)
            scale(1);

        opacity: 1;
    }

    25% {
        transform:
            translate(
                calc(var(--confetti-x) * .45),
                calc(var(--confetti-y) * .45)
            )
            rotate(180deg)
            scale(1.1);

        opacity: 1;
    }

    100% {
        transform:
            translate(
                var(--confetti-x),
                var(--confetti-y)
            )
            rotate(720deg)
            scale(.7);

        opacity: 0;
    }
}


/* =========================================================
   CLICK-TRIGGERED BALLOONS
   ========================================================= */

.float-balloon {
    position: fixed !important;

    width: 95px !important;
    height: 125px !important;

    z-index: 99998 !important;

    border-radius: 50% 50% 48% 48% !important;

    pointer-events: none !important;

    background:
        radial-gradient(
            circle at 30% 25%,
            rgba(255,255,255,.8),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #f7a8c0,
            #c96889
        ) !important;

    box-shadow:
        inset -15px -20px 25px rgba(130,45,75,.2),
        inset 15px 10px 20px rgba(255,255,255,.3),
        0 15px 35px rgba(63,52,57,.18) !important;

    animation:
        click-balloon-rise
        2.8s
        ease-out
        forwards !important;
}

@keyframes click-balloon-rise {

    0% {
        opacity: 0;

        transform:
            translateY(30px)
            scale(.7)
            rotate(-8deg);
    }

    15% {
        opacity: 1;
    }

    100% {
        opacity: 0;

        transform:
            translateY(-110vh)
            scale(1)
            rotate(12deg);
    }
}


/* =========================================================
   MOBILE OPENING BALLOON
   ========================================================= */

@media (max-width: 600px) {

    .opening-balloon {
        width: 190px !important;
        height: 250px !important;
    }

    @keyframes giant-balloon-rise {

        0% {
            bottom: -300px;

            transform:
                translateX(-50%)
                scale(.7);
        }

        10% {
            opacity: 1;
        }

        70% {
            bottom: 40vh;

            transform:
                translateX(-50%)
                scale(1);
        }

        100% {
            bottom: 40vh;

            transform:
                translateX(-50%)
                scale(1);
        }
    }
}

/* Dedicated pages use the same fixed, centered navigation treatment. */
.page-view-nav {
    position: fixed !important;
    top: 18px !important;
    left: 50% !important;
    width: min(1380px, calc(100% - 40px)) !important;
    height: auto !important;
    transform: translateX(-50%) !important;
    background: transparent !important;
}

.page-view-nav .nav {
    position: relative !important;
    width: 100% !important;
    height: 78px !important;
    justify-content: center !important;
    padding: 8px 22px !important;
    border: 1px solid rgba(63, 52, 57, 0.08) !important;
    border-radius: 999px !important;
    background: rgba(255, 250, 247, 0.94) !important;
    box-shadow: 0 12px 35px rgba(63, 52, 57, 0.10) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease !important;
}

.page-view-nav .nav > .logo {
    position: absolute !important;
    left: 22px !important;
}

.page-view-nav .nav-links {
    width: 100% !important;
    justify-content: center !important;
}

.page-view-nav.scrolled .nav {
    background: rgba(64, 52, 58, 0.82) !important;
    border-color: rgba(255, 255, 255, 0.16) !important;
    box-shadow: 0 12px 35px rgba(64, 52, 58, 0.18) !important;
}

.page-view-nav.scrolled .nav-link {
    color: white !important;
}

@media (max-width: 900px) {
    .page-view-nav {
        top: 10px !important;
        width: calc(100% - 20px) !important;
    }

    .page-view-nav .nav > .logo {
        position: relative !important;
        left: auto !important;
    }

    .page-view-nav .nav-links {
        justify-content: flex-end !important;
    }
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .opening-balloon,
    .float-balloon,
    .confetti-piece {
        animation: none !important;
        display: none !important;
    }
}
