/* =========================================================
   AKINDE 80
   PREMIUM 80TH BIRTHDAY CELEBRATION
   ========================================================= */

:root {
    --burgundy: #4b1022;
    --burgundy-dark: #260811;
    --burgundy-deep: #18050b;
    --gold: #c8a34d;
    --gold-light: #efd58b;
    --gold-soft: rgba(200, 163, 77, 0.18);
    --ivory: #fffdf8;
    --cream: #f6f0e5;
    --text: #292321;
    --muted: #716967;
    --white: #ffffff;
    --shadow: 0 25px 70px rgba(35, 8, 17, 0.16);
    --radius: 18px;
}


/* =========================================================
   RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, "Times New Roman", serif;
    background: var(--ivory);
    color: var(--text);
    line-height: 1.75;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}


/* =========================================================
   GENERAL
   ========================================================= */

.section-container {
    width: min(1160px, 90%);
    margin: 0 auto;
}

.section-label {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--burgundy);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    margin-bottom: 18px;
}

.gold-line {
    width: 72px;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--gold),
        var(--gold-light),
        var(--gold)
    );
    margin: 25px auto 32px;
    border-radius: 10px;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(24, 5, 11, 0.97) 0%,
            rgba(38, 8, 17, 0.88) 40%,
            rgba(75, 16, 34, 0.48) 72%,
            rgba(24, 5, 11, 0.80) 100%
        ),
        url("../images/akinde-80-portrait.jpg")
        center center / cover no-repeat;
}


/* cinematic glow */

.hero::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    right: -180px;
    top: -180px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(239, 213, 139, 0.20),
        transparent 68%
    );
    animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 65%,
            rgba(24, 5, 11, 0.72) 100%
        );
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(200, 163, 77, 0.07),
            transparent 28%
        );
}

.hero-content {
    position: relative;
    z-index: 5;
    width: min(1080px, 90%);
    padding: 100px 20px;
    text-align: center;
    color: var(--white);
    animation: heroEnter 1.2s ease-out both;
}

.eyebrow {
    display: inline-block;
    color: var(--gold-light);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.30em;
    margin-bottom: 28px;
    position: relative;
}

.eyebrow::before,
.eyebrow::after {
    content: "";
    display: inline-block;
    width: 42px;
    height: 1px;
    background: var(--gold);
    vertical-align: middle;
    margin: 0 15px;
}

.hero h1 {
    font-size: clamp(2.7rem, 6vw, 6rem);
    line-height: 1.02;
    font-weight: 400;
    letter-spacing: -0.025em;
    margin-bottom: 34px;
    text-shadow: 0 5px 35px rgba(0, 0, 0, 0.40);
}

.hero h1 span {
    display: inline-block;
    color: var(--gold-light);
    font-weight: 500;
    margin-top: 8px;
}


/* =========================================================
   BIRTHDAY DISPLAY
   ========================================================= */

.birthday-line {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 15px 28px 15px 20px;
    margin-bottom: 30px;

    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(239, 213, 139, 0.32);
    border-radius: 100px;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.18),
        inset 0 0 25px rgba(255, 255, 255, 0.025);
}

.age {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 92px;
    height: 92px;

    border: 2px solid var(--gold);
    border-radius: 50%;

    color: var(--gold-light);
    font-size: 3.8rem;
    line-height: 1;
    font-weight: 700;

    background:
        radial-gradient(
            circle,
            rgba(239, 213, 139, 0.11),
            transparent 68%
        );

    box-shadow:
        0 0 35px rgba(200, 163, 77, 0.15),
        inset 0 0 25px rgba(200, 163, 77, 0.08);
}

.birthday-line strong {
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
}

.birthday-line small {
    display: block;
    margin-top: 5px;
    color: #eadfd5;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.86rem;
    letter-spacing: 0.12em;
}


/* =========================================================
   HERO INTRO
   ========================================================= */

.hero-intro {
    width: min(720px, 100%);
    margin: 0 auto 38px;

    color: #f2ebe5;
    font-size: 1.08rem;
    line-height: 1.85;

    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.35);
}


/* =========================================================
   BUTTONS
   ========================================================= */

.hero-button,
.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 54px;
    padding: 15px 32px;

    border-radius: 100px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.hero-button,
.primary-button {
    color: var(--burgundy-dark);

    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold),
            var(--gold-light)
        );

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.25),
        0 0 0 rgba(239, 213, 139, 0);
}

.hero-button:hover,
.primary-button:hover {
    transform: translateY(-4px);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.28),
        0 0 30px rgba(239, 213, 139, 0.20);
}


/* =========================================================
   INTRODUCTION
   ========================================================= */

.intro-section {
    position: relative;
    padding: 115px 0;
    text-align: center;
    background: var(--ivory);
}

.intro-section::before {
    content: "80";
    position: absolute;
    left: 50%;
    top: 30px;
    transform: translateX(-50%);

    font-size: 13rem;
    font-weight: 700;
    line-height: 1;

    color: rgba(75, 16, 34, 0.025);
    pointer-events: none;
}

.intro-section h2,
.about-content h2,
.birthday-wishes-content h2,
.messages-section h2,
.form-section h2 {
    font-size: clamp(2.15rem, 4vw, 3.5rem);
    line-height: 1.15;
    font-weight: 400;
    color: var(--burgundy-dark);
}

.intro-text {
    position: relative;
    max-width: 780px;
    margin: 0 auto 18px;

    color: var(--muted);
    font-size: 1.06rem;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about-section {
    position: relative;
    padding: 115px 0;
    background:
        linear-gradient(
            135deg,
            #f4ecdf,
            #fbf8f1
        );
}

.about-grid {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-image::before {
    content: "";
    position: absolute;
    inset: -12px;
    border: 1px solid rgba(200, 163, 77, 0.45);
    border-radius: calc(var(--radius) + 8px);
    z-index: 0;
}

.about-image img {
    position: relative;
    z-index: 1;

    width: 100%;
    height: 650px;
    object-fit: cover;

    border-radius: var(--radius);
}

.about-content {
    padding-right: 25px;
}

.about-content .gold-line {
    margin-left: 0;
    margin-right: 0;
}

.about-content p {
    color: var(--muted);
    font-size: 1.06rem;
    margin-bottom: 22px;
}


/* =========================================================
   BIRTHDAY WISHES
   ========================================================= */

.birthday-wishes-section {
    position: relative;
    overflow: hidden;

    padding: 120px 0;

    text-align: center;
    color: var(--white);

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(200, 163, 77, 0.16),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            var(--burgundy-deep),
            var(--burgundy)
        );
}

.birthday-wishes-section::before {
    content: "80";
    position: absolute;
    right: -30px;
    bottom: -80px;

    font-size: 20rem;
    font-weight: 700;
    line-height: 1;

    color: rgba(255, 255, 255, 0.025);
}

.birthday-wishes-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.birthday-wishes-content .section-label {
    color: var(--gold-light);
}

.birthday-wishes-content h2 {
    color: var(--white);
}

.birthday-wishes-content p:not(.section-label) {
    max-width: 680px;
    margin: 0 auto 35px;
    color: #eee3dc;
    font-size: 1.08rem;
}


/* =========================================================
   MESSAGES
   ========================================================= */

.messages-section {
    padding: 115px 0;
    text-align: center;
    background: var(--ivory);
}

.section-intro {
    max-width: 720px;
    margin: 0 auto 50px;
    color: var(--muted);
}

.message-placeholder {
    position: relative;
    max-width: 680px;
    margin: 0 auto;

    padding: 65px 40px;

    background:
        linear-gradient(
            145deg,
            #fffefa,
            #f7f0e5
        );

    border: 1px solid rgba(200, 163, 77, 0.35);
    border-radius: var(--radius);

    box-shadow: var(--shadow);
}

.message-placeholder::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);

    width: 100px;
    height: 3px;

    background: var(--gold);
}

.placeholder-icon {
    width: 88px;
    height: 88px;

    margin: 0 auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid var(--gold);
    border-radius: 50%;

    color: var(--burgundy);
    font-size: 1.8rem;
    font-weight: 700;

    box-shadow:
        0 0 0 8px rgba(200, 163, 77, 0.07);
}

.message-placeholder h3 {
    color: var(--burgundy-dark);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.message-placeholder p {
    color: var(--muted);
    margin-bottom: 28px;
}

.secondary-button {
    border: 1px solid var(--burgundy);
    color: var(--burgundy);
}

.secondary-button:hover {
    background: var(--burgundy);
    color: var(--white);
    transform: translateY(-3px);
}


/* =========================================================
   PHOTOGRAPHS
   ========================================================= */

.photo-section {
    position: relative;
    padding: 30px;
    background: var(--burgundy-dark);
}

.photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;

    width: min(1250px, 100%);
    margin: 0 auto;
}

.photo-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.30);
}

.photo-card::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(24, 5, 11, 0.45)
        );

    pointer-events: none;
}

.photo-card img {
    width: 100%;
    height: 650px;
    object-fit: cover;

    transition:
        transform 1s cubic-bezier(0.2, 0.7, 0.2, 1),
        filter 0.6s ease;
}

.photo-card:hover img {
    transform: scale(1.035);
    filter: brightness(1.04);
}


/* =========================================================
   FORM
   ========================================================= */

.form-section {
    padding: 115px 0;
    text-align: center;
    background:
        linear-gradient(
            180deg,
            var(--ivory),
            var(--cream)
        );
}

.form-placeholder {
    max-width: 720px;
    margin: 45px auto 0;

    padding: 55px 40px;

    border: 1px dashed rgba(75, 16, 34, 0.35);
    border-radius: var(--radius);

    background: rgba(255, 255, 255, 0.55);
}

.form-placeholder p {
    color: var(--muted);
    margin-bottom: 8px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(200, 163, 77, 0.10),
            transparent 35%
        ),
        var(--burgundy-deep);

    color: var(--white);
    text-align: center;

    padding: 80px 20px 38px;
}

.footer::before {
    content: "80";
    position: absolute;
    left: 50%;
    top: -80px;
    transform: translateX(-50%);

    font-size: 18rem;
    font-weight: 700;
    line-height: 1;

    color: rgba(255, 255, 255, 0.025);
}

.footer-container {
    position: relative;
    z-index: 2;

    width: min(900px, 90%);
    margin: 0 auto;
}

.footer-age {
    color: var(--gold-light);
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 18px;
}

.footer h3 {
    font-size: 1.45rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.footer p {
    color: #d9ccc5;
}

.footer-line {
    width: 60px;
    height: 2px;

    background: var(--gold);

    margin: 28px auto;
}

.copyright {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.72rem;
}


/* =========================================================
   ANIMATION
   ========================================================= */

@keyframes heroEnter {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroGlow {
    from {
        transform: scale(0.95);
        opacity: 0.65;
    }

    to {
        transform: scale(1.08);
        opacity: 1;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 850px) {

    .hero {
        min-height: 92vh;
        background-position: 58% center;
    }

    .hero-content {
        padding: 80px 15px;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 8vw, 4.6rem);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-content {
        padding-right: 0;
    }

    .about-image img {
        height: auto;
        max-height: 700px;
    }

    .photo-grid {
        grid-template-columns: 1fr;
    }

    .photo-card img {
        height: auto;
        max-height: 800px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 560px) {

    .section-container {
        width: min(92%, 1160px);
    }

    .hero {
        min-height: 96vh;

        background:
            linear-gradient(
                180deg,
                rgba(24, 5, 11, 0.72),
                rgba(24, 5, 11, 0.95)
            ),
            url("../images/akinde-80-portrait.jpg")
            58% center / cover no-repeat;
    }

    .hero-content {
        padding: 65px 8px;
    }

    .eyebrow {
        font-size: 0.62rem;
        letter-spacing: 0.16em;
        line-height: 1.6;
    }

    .eyebrow::before,
    .eyebrow::after {
        width: 20px;
        margin: 0 7px;
    }

    .hero h1 {
        font-size: 2.35rem;
        line-height: 1.08;
        margin-bottom: 28px;
    }

    .birthday-line {
        flex-direction: column;
        gap: 13px;

        padding: 18px 25px 22px;

        border-radius: 25px;
    }

    .age {
        width: 82px;
        height: 82px;
        font-size: 3.3rem;
    }

    .birthday-line strong {
        font-size: 0.95rem;
        text-align: center;
    }

    .birthday-line small {
        font-size: 0.75rem;
        text-align: center;
    }

    .hero-intro {
        font-size: 0.96rem;
        line-height: 1.7;
    }

    .hero-button,
    .primary-button,
    .secondary-button {
        width: 100%;
        max-width: 330px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .intro-section,
    .about-section,
    .birthday-wishes-section,
    .messages-section,
    .form-section {
        padding: 80px 0;
    }

    .intro-section h2,
    .about-content h2,
    .birthday-wishes-content h2,
    .messages-section h2,
    .form-section h2 {
        font-size: 2.1rem;
    }

    .about-image::before {
        inset: -7px;
    }

    .message-placeholder {
        padding: 55px 25px;
    }

    .photo-section {
        padding: 15px;
    }

    .photo-grid {
        gap: 15px;
    }

    .photo-card img {
        max-height: 650px;
    }

    .form-placeholder {
        padding: 40px 22px;
    }

    .footer {
        padding-top: 65px;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* =========================================================
   BIRTHDAY WISHES FORM
   ========================================================= */

.birthday-form {
    width: min(850px, 100%);
    margin: 50px auto 0;
    padding: 50px;

    background: rgba(255, 255, 255, 0.78);

    border: 1px solid rgba(200, 163, 77, 0.28);
    border-radius: 22px;

    box-shadow:
        0 25px 70px rgba(38, 8, 17, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);

    text-align: left;
}


/* ---------- FORM GROUP ---------- */

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    color: var(--burgundy-dark);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.form-group label span {
    color: var(--gold);
}

.form-group label small {
    color: var(--muted);
    font-weight: 400;
    letter-spacing: 0;
}


/* ---------- INPUTS ---------- */

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="file"],
.form-group textarea {
    width: 100%;

    border: 1px solid #ded5ca;
    border-radius: 12px;

    background: #fffdf9;

    color: var(--text);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;

    outline: none;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


/* Text fields */

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    height: 54px;
    padding: 0 16px;
}


/* Textarea */

.form-group textarea {
    min-height: 170px;
    padding: 15px 16px;
    resize: vertical;
    line-height: 1.7;
}


/* Focus */

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);

    background: #ffffff;

    box-shadow:
        0 0 0 4px rgba(200, 163, 77, 0.10);
}


/* Placeholder */

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a49b94;
}


/* ---------- TWO-COLUMN ROW ---------- */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}


/* ---------- PHOTO UPLOAD ---------- */

.photo-upload-group {
    padding: 25px;

    border: 1px solid rgba(200, 163, 77, 0.25);
    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            rgba(246, 240, 229, 0.75),
            rgba(255, 253, 248, 0.95)
        );
}

.field-note {
    margin: -2px 0 13px;

    color: var(--muted);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.78rem;
    line-height: 1.55;
}


/* File input */

.form-group input[type="file"] {
    padding: 11px;
    cursor: pointer;
}

.form-group input[type="file"]::file-selector-button {
    margin-right: 12px;

    padding: 9px 15px;

    border: 0;
    border-radius: 8px;

    background: var(--burgundy);
    color: var(--white);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;

    cursor: pointer;

    transition: background 0.25s ease;
}

.form-group input[type="file"]::file-selector-button:hover {
    background: var(--burgundy-dark);
}


/* ---------- CHARACTER COUNT ---------- */

.character-count {
    margin-top: 7px;

    text-align: right;

    color: #958c85;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.72rem;
}


/* ---------- PRIVACY NOTICE ---------- */

.form-notice {
    margin: 28px 0;

    padding: 18px 20px;

    border-left: 3px solid var(--gold);

    background: rgba(200, 163, 77, 0.07);

    color: var(--muted);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.78rem;
    line-height: 1.6;
}

.form-notice strong {
    display: block;

    margin-bottom: 4px;

    color: var(--burgundy);
}

.form-notice p {
    margin: 0;
}


/* ---------- SUBMIT ---------- */

.form-submit {
    text-align: center;
    margin-top: 32px;
}

.form-submit .primary-button {
    border: 0;
    cursor: pointer;
    min-width: 260px;
}

.form-submit .primary-button:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}


/* ---------- FORM RESPONSE ---------- */

.form-response {
    display: none;

    margin-top: 25px;
    padding: 16px 20px;

    border-radius: 10px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.86rem;
    line-height: 1.6;

    text-align: center;
}

.form-response.success {
    display: block;

    background: #edf7ef;
    border: 1px solid #b8d9be;
    color: #245d2d;
}

.form-response.error {
    display: block;

    background: #fff0f0;
    border: 1px solid #e0b5b5;
    color: #8a2424;
}


/* =========================================================
   FORM MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .birthday-form {
        padding: 35px 22px;
        border-radius: 17px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .photo-upload-group {
        padding: 20px 17px;
    }

    .form-submit .primary-button {
        width: 100%;
    }
}


@media (max-width: 480px) {

    .birthday-form {
        width: 100%;
        padding: 28px 16px;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"] {
        height: 51px;
    }

    .form-group textarea {
        min-height: 160px;
    }

    .form-group input[type="file"] {
        font-size: 0.78rem;
    }

    .form-group input[type="file"]::file-selector-button {
        display: block;
        margin: 0 0 9px;
    }
}
/* =========================================================
   OPTIONAL FIELD STYLING
   ========================================================= */

.form-group label small {
    color: #8b6f2f;
    font-weight: 500;
    font-size: 0.82em;
}

.now-later {
    color: #b21f2d;
    font-weight: 700;
    font-size: 0.9em;
    margin-left: 4px;
}
/* =========================================================
   BIRTHDAY MESSAGE BOX
   ========================================================= */

#message {
    width: 100%;
    min-height: 300px;
    
    font-size: 1rem;
    line-height: 1.75;
}
.birthday-form {
    width: 980px;
    max-width: 100%;
}
/* =========================================================
   MAIN NAVIGATION
   ========================================================= */

.main-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    padding: 22px 0;

    background: linear-gradient(
        180deg,
        rgba(24, 5, 11, 0.82),
        rgba(24, 5, 11, 0)
    );

    transition:
        background 0.3s ease,
        padding 0.3s ease;
}

.nav-container {
    width: min(1380px, 92%);
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}


/* ---------- BRAND ---------- */

.brand {
    display: flex;
    align-items: center;
    gap: 11px;

    flex-shrink: 0;

    color: var(--white);
}

.brand-80 {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 43px;
    height: 43px;

    border: 1px solid var(--gold);
    border-radius: 50%;

    color: var(--gold-light);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.brand-name {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.22em;
}


/* ---------- NAV LINKS ---------- */

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
}

.nav-links a {
    position: relative;

    color: rgba(255, 255, 255, 0.88);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.09em;

    white-space: nowrap;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.nav-links a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--gold);

    transition: width 0.25s ease;
}

.nav-links a:hover {
    color: var(--gold-light);
}

.nav-links a:hover::after {
    width: 100%;
}


/* ---------- FEATURED LINK ---------- */

.nav-links .nav-highlight {
    padding: 10px 16px;

    border: 1px solid rgba(239, 213, 139, 0.65);
    border-radius: 100px;

    color: var(--gold-light);
}

.nav-links .nav-highlight::after {
    display: none;
}

.nav-links .nav-highlight:hover {
    background: rgba(239, 213, 139, 0.10);
}


/* ---------- MOBILE TOGGLE ---------- */

.nav-toggle {
    display: none;

    width: 44px;
    height: 44px;

    padding: 9px;

    border: 1px solid rgba(239, 213, 139, 0.45);
    border-radius: 10px;

    background: transparent;

    cursor: pointer;
}

.nav-toggle span {
    display: block;

    width: 100%;
    height: 2px;

    margin: 5px 0;

    background: var(--gold-light);

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


/* =========================================================
   NAVIGATION - TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .nav-container {
        width: 94%;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 0.60rem;
        letter-spacing: 0.06em;
    }

    .nav-links .nav-highlight {
        padding: 8px 11px;
    }
}


/* =========================================================
   NAVIGATION - MOBILE
   ========================================================= */

@media (max-width: 850px) {

    .main-nav {
        padding: 15px 0;
    }

    .nav-toggle {
        display: block;
        position: relative;
        z-index: 1002;
    }

    .nav-links {
        position: fixed;

        top: 0;
        right: -100%;

        width: min(360px, 88vw);
        height: 100vh;

        padding: 100px 35px 40px;

        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;

        background:
            linear-gradient(
                145deg,
                var(--burgundy-dark),
                var(--burgundy-deep)
            );

        box-shadow:
            -20px 0 60px rgba(0, 0, 0, 0.35);

        transition: right 0.35s ease;

        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        padding: 18px 5px;

        border-bottom: 1px solid rgba(255, 255, 255, 0.08);

        font-size: 0.72rem;
        letter-spacing: 0.10em;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links .nav-highlight {
        margin: 15px 0;
        text-align: center;
        border-radius: 10px;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}
/* =========================================================
   ACTIVE NAVIGATION ITEM
   ========================================================= */



.nav-links a.nav-active::after {
    width: 100%;
}

.nav-links a.nav-active:hover {
    color: var(--gold-light);
}
/* Active page — HOME */
.nav-links a.nav-active {
    color: var(--gold-light) !important;
}

.nav-links a.nav-active::after {
    width: 100%;
    background: var(--gold) !important;
}

/* =========================================================
   SEND-WISH PAGE — CELEBRANT PORTRAIT
   ========================================================= */

.celebrant-feature {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.celebrant-image-wrap {
    width: 300px;
    margin: 0 auto 28px;
    padding: 6px;

    background: #ffffff;

    border: 2px solid #c8a34d;
    border-radius: 18px;

    box-shadow:
        0 12px 30px rgba(38, 8, 17, 0.16);

    box-sizing: border-box;
}

.celebrant-formal-image {
    display: block;

    width: 100%;
    height: auto;

    aspect-ratio: 4 / 5;

    object-fit: cover;

    border-radius: 12px;
}


/* =========================================================
   SEND-WISH PAGE PORTRAIT — MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .celebrant-image-wrap {
        width: 240px;
        margin-bottom: 24px;
        padding: 5px;
        border-radius: 15px;
    }

    .celebrant-formal-image {
        border-radius: 10px;
    }

}
/* =========================================================
   SEND-WISH PAGE — PORTRAIT POSITION
   ========================================================= */

.page-hero {
    padding-top: 90px;
}

.celebrant-feature {
    padding-top: 20px;
}
/* =========================================================
   SEND-WISH PAGE — FINAL VISUAL REFINEMENT
   ========================================================= */

/* ---------------------------------------------------------
   CELEBRATION BACKGROUND
   --------------------------------------------------------- */

.send-wish-page {
    background:
        radial-gradient(
            circle at 50% 18%,
            rgba(200, 163, 77, 0.10),
            transparent 32%
        ),
        radial-gradient(
            circle at 8% 45%,
            rgba(123, 30, 58, 0.06),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 55%,
            rgba(200, 163, 77, 0.06),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #fffdf9 0%,
            #fbf7f1 45%,
            #fffdf9 100%
        );
}


/* ---------------------------------------------------------
   SUBTLE DECORATIVE BACKGROUND
   --------------------------------------------------------- */

.send-wish-page::before {
    content: "80";

    position: fixed;
    top: 180px;
    left: 50%;

    transform: translateX(-50%);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 32rem;
    line-height: 1;

    font-weight: 700;

    color: rgba(200, 163, 77, 0.035);

    pointer-events: none;

    z-index: 0;
}


/* Keep page content above decorative background */


/* ---------------------------------------------------------
   REDUCE EXCESSIVE SPACE BEFORE THE FORM
   --------------------------------------------------------- */

.send-wish-page .celebrant-feature {
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.send-wish-page .form-section {
    margin-top: 0;
    padding-top: 35px;
}


/* ---------------------------------------------------------
   INTRODUCTORY TEXT
   --------------------------------------------------------- */

.send-wish-page .hero-intro {
    color: #705e65;
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 650px) {

    .send-wish-page::before {
        top: 220px;
        font-size: 18rem;
    }

    .send-wish-page .celebrant-feature {
        margin-bottom: 10px;
        padding-bottom: 5px;
    }

    .send-wish-page .form-section {
        padding-top: 25px;
    }

}

/* =========================================================
   SITE-WIDE FOOTER
   ========================================================= */

.site-footer {
    width: 100%;
    padding: 22px 20px;

    background:
        linear-gradient(
            145deg,
            var(--burgundy-dark),
            var(--burgundy-deep)
        );

    border-top:
        1px solid rgba(200, 163, 77, 0.22);

    box-sizing: border-box;
    text-align: center;
}


.site-footer-inner {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 6px;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 0.68rem;
    letter-spacing: 0.08em;

    color:
        rgba(255, 255, 255, 0.58);
}


.site-footer-inner a {
    color: var(--gold-light);

    font-weight: 700;

    text-decoration: none;

    transition:
        color 0.25s ease,
        opacity 0.25s ease;
}


.site-footer-inner a:hover {
    color: var(--gold);
    opacity: 0.85;
}


/* ---------------------------------------------------------
   FOOTER — MOBILE
   --------------------------------------------------------- */

@media (max-width: 650px) {

    .site-footer {
        padding: 20px 15px;
    }

    .site-footer-inner {
        font-size: 0.64rem;
    }

}
/* =========================================================
   HOMEPAGE — LIVE STATISTICS
   Keep all six counter cards on one row on desktop
   ========================================================= */

@media (min-width: 1101px) {

    .stats-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 16px;
    }

    .stat-card {
        min-width: 0;
        padding-left: 12px;
        padding-right: 12px;
    }

    .stat-card h3 {
        font-size: 0.68rem;
        letter-spacing: 0.08em;
        white-space: nowrap;
    }

}
@media (min-width: 1101px) {

    .stats-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 16px;
    }

    .stat-card {
        min-width: 0;
        padding-left: 12px;
        padding-right: 12px;
    }

    .stat-card h3 {
        font-size: 0.68rem;
        letter-spacing: 0.08em;
        white-space: nowrap;
    }

}
/* =========================================================
   SEND-WISH PAGE — NAVIGATION BACKGROUND
   Page-specific only — does not affect homepage
   ========================================================= */

.send-wish-page .main-nav {
    background:
        linear-gradient(
            180deg,
            rgba(38, 5, 14, 0.97),
            rgba(38, 5, 14, 0.94)
        ) !important;
}