/* ======================================================
   GROWTH WITH GRACE PARIVAR
   STYLE.CSS
   PART 1
====================================================== */

:root {

    --primary: #7A1734;
    --secondary: #183A74;
    --accent: #C6A15B;

    --background: #F8F6F2;
    --white: #ffffff;
    --text: #2E2E2E;

    --shadow: 0 10px 30px rgba(0, 0, 0, .08);

    --radius: 18px;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: 'Poppins', sans-serif;

    background: linear-gradient(180deg,
            #FFFCF6 0%,
            #F8EED8 45%,
            #F2DFC0 100%);

    color: var(--text);

    overflow-x: hidden;

}

img {

    max-width: 100%;

    display: block;

}

a {

    text-decoration: none;

    color: inherit;

}

ul {

    list-style: none;

}

.container {

    width: min(1200px, 90%);

    margin: auto;

}

.section {

    padding: 110px 0;

}

h1,
h2,
h3 {

    font-family: 'Cormorant Garamond', serif;

}

.section-tag {

    color: var(--accent);

    font-size: .85rem;

    letter-spacing: 4px;

    font-weight: 600;

    margin-bottom: 12px;

    text-transform: uppercase;

}

section h2 {

    font-size: 3rem;

    margin-bottom: 20px;

    color: var(--primary);

}

section p {

    line-height: 1.8;

    font-size: 1.05rem;

}



/* ===================================
            NAVBAR
=================================== */

header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 999;

    backdrop-filter: blur(16px);

    background: rgba(248, 246, 242, .90);

    box-shadow: 0 5px 20px rgba(0, 0, 0, .06);

}

.navbar {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 18px 0;

}

.logo img {

    height: 100px;

}

nav ul {

    display: flex;

    align-items: center;

    gap: 40px;

    list-style: none;

}

nav a {

    color: var(--secondary);

    font-weight: 500;

    transition: .3s;

    position: relative;

}

nav a::after {

    content: "";

    position: absolute;

    width: 0;

    height: 2px;

    left: 0;

    bottom: -6px;

    background: var(--accent);

    transition: .3s;

}

nav a:hover {

    color: var(--primary);

}

nav a:hover::after {

    width: 100%;

}



/* ===================================
              HERO
=================================== */

.hero {

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 140px 20px 80px;

    background:

        linear-gradient(rgba(20, 20, 20, .35), rgba(20, 20, 20, .35)),

        url("images/sept1.jpg");

    background-size: cover;

    background-position: center;

}

.hero-content {

    max-width: 850px;

}

.hero-small {

    color: #C9A227;

    letter-spacing: 4px;

    text-transform: uppercase;

    font-size: 1rem;

    margin-bottom: 18px;

    font-weight: 600;

}

.hero h1 {

    font-size: 6.5rem;

    line-height: 1.05;

    color: white;

    margin-bottom: 18px;

}

.hero h1 span {

    color: var(--secondary);

}

.hero-text {

    font-size: 1rem;

    max-width: 850px;

    margin: auto;

    margin-bottom: 45px;

    color: #f5f5f5;

}

.hero-buttons {

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;

}

.primary-btn {

    background: var(--primary);

    color: white;

    padding: 16px 34px;

    border-radius: 999px;

    transition: .3s;

    box-shadow: var(--shadow);

}

.primary-btn:hover {

    transform: translateY(-4px);

    background: #611129;

}

.secondary-btn {

    border: 2px solid var(--accent);

    color: white;

    padding: 16px 34px;

    border-radius: 999px;

    transition: .3s;

}

.secondary-btn:hover {

    background: var(--accent);

    color: #232323;

}



/* ===================================
       SECTION TRANSITIONS
=================================== */

.about {

    background: white;

}

.values {

    background: #FDFBF8;

}

.gallery {

    background: white;

}

.contact {

    background: #FDFBF8;

}

/* ======================================================
   ABOUT SECTION
====================================================== */

.about-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

}

.about-image img {

    width: 100%;

    border-radius: 24px;

    box-shadow: var(--shadow);

    transition: .4s;

}

.about-image img:hover {

    transform: scale(1.02);

}

.about-content h2 {

    margin-bottom: 25px;

}

.about-content p {

    margin-bottom: 18px;

}



/* ======================================================
   VALUES
====================================================== */

.value-grid {

    margin-top: 60px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 35px;

}

.value-card {

    background: white;

    border-radius: 22px;

    padding: 45px 30px;

    text-align: center;

    box-shadow: var(--shadow);

    transition: .35s;

}

.value-card:hover {

    transform: translateY(-12px);

}

.value-card .icon {

    font-size: 3rem;

    margin-bottom: 20px;

}

.value-card h3 {

    font-size: 2rem;

    color: var(--primary);

    margin-bottom: 15px;

}

.value-card p {

    color: #666;

}



/* ======================================================
   GALLERY
====================================================== */

.gallery-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 35px;

    margin-top: 50px;

}

.gallery-grid img {

    width: 100%;

    height: 420px;

    object-fit: cover;

    border-radius: 22px;

    box-shadow: var(--shadow);

    transition: .35s;

    cursor: pointer;

}

.gallery-grid img:hover {

    transform: scale(1.03);

}



/* ======================================================
   CONTACT
====================================================== */

.contact {

    text-align: center;

}

.contact h2 {

    margin-bottom: 15px;

}

.contact>.container>p {

    margin-bottom: 45px;

}

.contact-info {

    display: grid;

    gap: 20px;

    max-width: 650px;

    margin: auto;

}

.contact-info a {

    background: white;

    padding: 20px;

    border-radius: 18px;

    box-shadow: var(--shadow);

    transition: .3s;

    color: var(--secondary);

    font-weight: 500;

}

.contact-info a:hover {

    background: var(--primary);

    color: white;

    transform: translateY(-5px);

}



/* ======================================================
   FOOTER
====================================================== */

footer {

    background: #c58f3e;

    color: white;

    text-align: center;

    padding: 35px 20px;

    margin-top: 80px;

}

footer p {

    opacity: .9;

}



/* ======================================================
   RESPONSIVE
====================================================== */

@media(max-width:1000px) {

    .about-grid {

        grid-template-columns: 1fr;

    }

    .value-grid {

        grid-template-columns: 1fr;

    }

    .gallery-grid {

        grid-template-columns: 1fr;

    }

}

@media(max-width:768px) {

    .navbar {

        flex-direction: column;

        height: auto;

        padding: 20px 0;

    }

    nav ul {

        gap: 20px;

        margin-top: 15px;

        flex-wrap: wrap;

        justify-content: center;

    }

    .hero h1 {

        font-size: 3.2rem;

    }

    .hero-text {

        font-size: 1.05rem;

    }

    section h2 {

        font-size: 2.3rem;

    }

}

/* ======================================================
   PART 3 - PREMIUM POLISH & ANIMATIONS
====================================================== */

/* Smooth fade-in animation */

@keyframes fadeUp {

    from {

        opacity: 0;
        transform: translateY(40px);

    }

    to {

        opacity: 1;
        transform: translateY(0);

    }

}

.hero-content,
.about-content,
.about-image,
.value-card,
.gallery-grid img,
.contact-info a {

    animation: fadeUp .8s ease both;

}

.about-content {

    animation-delay: .15s;

}

.value-card:nth-child(2) {

    animation-delay: .15s;

}

.value-card:nth-child(3) {

    animation-delay: .3s;

}

.gallery-grid img:nth-child(2) {

    animation-delay: .2s;

}



/* ======================================================
   SCROLL OFFSET
====================================================== */

section {

    scroll-margin-top: 120px;

}



/* ======================================================
   BUTTON IMPROVEMENTS
====================================================== */

.primary-btn,
.secondary-btn {

    font-weight: 600;

    letter-spacing: .5px;

}

.primary-btn:hover {

    box-shadow: 0 18px 35px rgba(122, 23, 52, .28);

}

.secondary-btn:hover {

    box-shadow: 0 18px 35px rgba(198, 161, 91, .25);

}



/* ======================================================
   VALUE CARD BORDER
====================================================== */

.value-card {

    border-top: 5px solid transparent;

}

.value-card:hover {

    border-top: 5px solid var(--accent);

}



/* ======================================================
   IMAGE IMPROVEMENTS
====================================================== */

.gallery-grid img {

    filter: saturate(.95);

}

.gallery-grid img:hover {

    filter: saturate(1.1);

}



/* ======================================================
   SECTION HEADINGS
====================================================== */

.section-tag {

    position: relative;

    display: inline-block;

    padding-left: 28px;

}

.section-tag::before {

    content: "";

    position: absolute;

    left: 0;

    top: 50%;

    transform: translateY(-50%);

    width: 18px;

    height: 2px;

    background: var(--accent);

}



/* ======================================================
   SELECTION COLOR
====================================================== */

::selection {

    background: var(--primary);

    color: white;

}



/* ======================================================
   SCROLLBAR
====================================================== */

::-webkit-scrollbar {

    width: 10px;

}

::-webkit-scrollbar-track {

    background: #eee;

}

::-webkit-scrollbar-thumb {

    background: var(--accent);

    border-radius: 20px;

}

::-webkit-scrollbar-thumb:hover {

    background: var(--primary);

}



/* ======================================================
   FOOTER LINKS (future-proof)
====================================================== */

footer a {

    color: white;

    transition: .3s;

}

footer a:hover {

    color: var(--accent);

}



/* ======================================================
   NICE TRANSITIONS
====================================================== */

img,
a,
button,
.value-card,
.contact-info a {

    transition: all .3s ease;

}



/* ======================================================
   HERO DECORATION
====================================================== */

.hero::after {

    content: "";

    position: absolute;

    bottom: 35px;

    left: 50%;

    transform: translateX(-50%);

    width: 70px;

    height: 4px;

    border-radius: 50px;

    background: var(--accent);

}



/* ======================================================
   ABOUT IMAGE
====================================================== */

.about-image {

    position: relative;

}

.about-image::before {

    content: "";

    position: absolute;

    width: 100%;

    height: 100%;

    border: 3px solid var(--accent);

    border-radius: 24px;

    top: 18px;

    left: 18px;

    z-index: -1;

}



/* ======================================================
   GALLERY SHADOW
====================================================== */

.gallery-grid img:hover {

    box-shadow: 0 20px 45px rgba(0, 0, 0, .18);

}



/* ======================================================
   CONTACT CARDS
====================================================== */

.contact-info a {

    border-left: 5px solid transparent;

}

.contact-info a:hover {

    border-left: 5px solid var(--accent);

}



/* ======================================================
   MOBILE IMPROVEMENTS
====================================================== */

@media(max-width:768px) {

    .hero {

        padding-top: 180px;

    }

    .hero h1 {

        font-size: 2.8rem;

    }

    .hero-buttons {

        flex-direction: column;

        align-items: center;

    }

    .primary-btn,
    .secondary-btn {

        width: 240px;

        text-align: center;

    }

    .logo img {

        height: 60px;

    }

    .gallery-grid img {

        height: 280px;

    }

}

/* ================= JOIN BUTTON ================= */

.join-btn {

    background: #C9A227;

    color: white;

    padding: 14px 30px;

    border-radius: 999px;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;

    box-shadow: 0 10px 25px rgba(201, 162, 39, .25);

    margin-left: 35px;

}

.join-btn:hover {

    background: #B58F1D;

    transform: translateY(-3px);

}

/* ===================================
        WELCOME SECTION
=================================== */

.welcome {
    padding: 120px 0;
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.welcome-text h2 {
    margin: 20px 0 30px;
}

.welcome-text p {
    font-size: 1.1rem;
    line-height: 1.9;
}

.welcome-image img {
    width: 100%;
    border-radius: 24px;
    display: block;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}

.welcome .primary-btn {
    display: inline-block;
    margin-top: 35px;
}

/* ===================================
        FOUNDER SECTION
=================================== */

.founder {

    padding: 120px 0;

}

.founder-grid {

    display: grid;

    grid-template-columns: 420px 1fr;

    gap: 80px;

    align-items: center;

}

.founder-image {

    text-align: center;

}

.founder-image img {

    width: 100%;

    max-width: 380px;

    border-radius: 30px;

    display: block;

    margin: auto;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .18);

    transition: .35s;

}

.founder-image img:hover {

    transform: translateY(-8px);

}

.founder-content h2 {

    margin: 18px 0 10px;

}

.founder-content h3 {

    color: var(--accent);

    font-weight: 600;

    margin-bottom: 25px;

}

.founder-content p {

    font-size: 1.08rem;

    line-height: 1.9;

    margin-bottom: 18px;

}

.founder-content .primary-btn {

    display: inline-block;

    margin-top: 22px;

}



/* ===================================
        MISSION
=================================== */

.values {

    padding: 120px 0;

    text-align: center;

}

.value-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 35px;

    margin-top: 60px;

}

.value-card {

    background: white;

    padding: 45px 35px;

    border-radius: 25px;

    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);

    transition: .35s;

}

.value-card:hover {

    transform: translateY(-10px);

}

.value-card .icon {

    font-size: 3rem;

    margin-bottom: 20px;

}

.value-card h3 {

    margin-bottom: 15px;

    color: var(--secondary);

}

.value-card p {

    line-height: 1.8;

}



/* ===================================
        EVENTS PREVIEW
=================================== */

.events-preview {

    padding: 120px 0;

    text-align: center;

}



/* ===================================
        JOIN SECTION
=================================== */

.join {

    padding: 130px 0;

    text-align: center;

}

.join h2 {

    margin: 20px 0;

}

.join p {

    max-width: 700px;

    margin: auto;

    line-height: 1.9;

    margin-bottom: 45px;

}



/* ===================================
        MOBILE
=================================== */

@media(max-width:900px) {

    .welcome-grid,

    .founder-grid {

        grid-template-columns: 1fr;

        text-align: center;

    }

    .founder-grid {

        gap: 50px;

    }

    .value-grid {

        grid-template-columns: 1fr;

    }

}

/* ===================================
        PAGE HEADER
=================================== */

.page-header {

    padding: 220px 0 120px;

    text-align: center;

    background: linear-gradient(135deg,
            rgba(123, 22, 55, .08),
            rgba(201, 162, 39, .10));

}

.page-header .section-tag {

    margin-bottom: 20px;

}

.page-header h1 {

    font-size: 4.5rem;

    color: var(--secondary);

    margin-bottom: 25px;

}

.page-header p {

    max-width: 750px;

    margin: auto;

    font-size: 1.15rem;

    line-height: 1.9;

}



/* ===================================
        ABOUT PAGE
=================================== */

.section {

    padding: 110px 0;

}

.section h2 {

    margin: 18px 0 30px;

}

.section p {

    font-size: 1.08rem;

    line-height: 1.9;

}



/* ===================================
        ABOUT IMAGES
=================================== */

.section img {

    width: 100%;

    border-radius: 28px;

    display: block;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);

}



/* ===================================
        CORE VALUES LIST
=================================== */

.section ul {

    padding-left: 25px;

}

.section li {

    margin-bottom: 18px;

    line-height: 1.8;

    font-size: 1.08rem;

}



/* ===================================
        QUOTE SECTION
=================================== */

.join h2 {

    max-width: 850px;

    margin: auto;

    font-family: 'Cormorant Garamond', serif;

    font-size: 3rem;

    font-weight: 600;

    color: var(--secondary);

    line-height: 1.4;

}



/* ===================================
        PAGE HEADER MOBILE
=================================== */

@media(max-width:900px) {

    .page-header {

        padding: 180px 20px 90px;

    }

    .page-header h1 {

        font-size: 3rem;

    }

    .join h2 {

        font-size: 2.2rem;

    }

}

/* ===================================
            GALLERY PAGE
=================================== */

.gallery-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

    margin-top: 40px;

}

.gallery-grid img {

    width: 100%;

    height: 280px;

    object-fit: cover;

    border-radius: 22px;

    transition: .35s;

    cursor: pointer;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);

}

.gallery-grid img:hover {

    transform: scale(1.04);

    box-shadow: 0 25px 50px rgba(0, 0, 0, .18);

}



@media(max-width:900px) {

    .gallery-grid {

        grid-template-columns: 1fr;

    }

}

/* ===================================
        EVENTS PAGE
=================================== */

.event-card {

    max-width: 800px;

    margin: 50px auto;

    background: white;

    padding: 50px;

    border-radius: 28px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .10);

}

.event-card h3 {

    color: var(--accent);

    margin-top: 25px;

    margin-bottom: 10px;

}

.event-card p {

    line-height: 1.9;

    margin-bottom: 18px;

}

.event-card .primary-btn {

    display: inline-block;

    margin-top: 20px;

}

/* ===================================
        CONTACT PAGE
=================================== */

.contact-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 35px;

    margin-top: 40px;

}

.contact-card {

    background: white;

    padding: 45px 30px;

    border-radius: 24px;

    text-align: center;

    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);

    transition: .35s;

}

.contact-card:hover {

    transform: translateY(-8px);

}

.contact-icon {

    font-size: 3rem;

    margin-bottom: 20px;

}

.contact-card h3 {

    margin-bottom: 15px;

    color: var(--secondary);

}

.contact-card p {

    line-height: 1.8;

}

@media(max-width:900px) {

    .contact-grid {

        grid-template-columns: 1fr;

    }

}

.contact-card .primary-btn {

    display: inline-block;

    margin-top: 25px;

}

/* ===================================
        REGISTER PAGE
=================================== */

.register-box {

    max-width: 800px;

    margin: auto;

    text-align: center;

    background: white;

    padding: 60px 50px;

    border-radius: 28px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);

}

.register-box h2 {

    margin-bottom: 20px;

}

.register-box p {

    line-height: 1.9;

}

.register-box .primary-btn {

    display: inline-block;

    margin: 35px 0;

    padding: 18px 40px;

}

.register-note {

    color: #666;

    font-size: .95rem;

}

.scrolled {
    background: rgba(248, 246, 242, .97);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

/* ======================================================
   CONTACT CARD BUTTON FIX
====================================================== */

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card p {
    margin-bottom: 0;
}

.contact-card .primary-btn {
    display: inline-block;
    position: static;
    margin-top: 25px;
    width: auto;
    text-align: center;
}

.contact-card .primary-btn {
    position: static !important;
    display: inline-block !important;
    margin-top: 25px !important;
    transform: none;
}

/* ======================================================
   FIX: CONTACT CARD BUTTONS OVERLAPPING TEXT
====================================================== */

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card p {
    margin-bottom: 25px;
}

.contact-card .primary-btn {
    position: static !important;
    display: inline-block;
    margin-top: 0;
    transform: none;
}

/* Keep hover animation */
.contact-card .primary-btn:hover {
    transform: translateY(-4px);
}
/* ======================================================
   FIX: VALUE CARD BUTTONS OVERLAPPING TEXT (Stay Connected section)
====================================================== */

.value-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-card p {
    margin-bottom: 25px;
    flex-grow: 1;
}

.value-card .primary-btn {
    position: static !important;
    display: inline-block;
    margin-top: 0;
    transform: none;
}

.value-card .primary-btn:hover {
    transform: translateY(-4px);
}
/* ======================================================
   FIX: SECTION TAG DASH CENTERING ON MOBILE
====================================================== */

@media(max-width:900px) {
    .page-header .section-tag,
    .section .section-tag {
        padding-left: 0;
        text-indent: 0;
    }

    .page-header .section-tag::before,
    .section .section-tag::before {
        display: none;
    }
}
@media(max-width:768px) {
    .event-card {
        padding: 35px 25px;
    }
}
/* ======================================================
   LIGHTBOX / IMAGE VIEWER
====================================================== */

.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn .25s ease;
}

.lightbox-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-img {
    max-width: 88%;
    max-height: 82%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
    animation: zoomIn .25s ease;
}

@keyframes zoomIn {
    from { transform: scale(.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    line-height: 1;
    transition: .2s;
}

.lightbox-close:hover {
    color: var(--accent);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: white;
    cursor: pointer;
    user-select: none;
    transition: .2s;
    padding: 10px 20px;
}

.lightbox-arrow:hover {
    color: var(--accent);
}

.lightbox-prev {
    left: 10px;
}

.lightbox-next {
    right: 10px;
}

@media(max-width:768px) {
    .lightbox-arrow {
        font-size: 2rem;
        padding: 8px 12px;
    }

    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 2rem;
    }
}
/* ======================================================
   BACK TO TOP BUTTON
====================================================== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: .3s;
    z-index: 998;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #611129;
    transform: translateY(-4px);
}

@media(max-width:768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}

/* ======================================================
   ACTIVE NAV LINK
====================================================== */

nav a.active {
    color: var(--primary);
}

nav a.active::after {
    width: 100%;
}

/* ======================================================
   COPY-TO-CLIPBOARD FEEDBACK
====================================================== */

.copy-text {
    cursor: pointer;
    position: relative;
}

.copy-toast {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

.copy-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
/* ======================================================
   COUNTDOWN TIMER
====================================================== */

.countdown-box {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
}

.countdown-unit {
    background: var(--background);
    border-radius: 16px;
    padding: 20px 25px;
    text-align: center;
    min-width: 85px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.countdown-unit span {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.countdown-unit p {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-top: 8px;
}

@media(max-width:600px) {
    .countdown-unit {
        min-width: 70px;
        padding: 15px 18px;
    }

    .countdown-unit span {
        font-size: 1.8rem;
    }
}

/* ======================================================
   LIGHTBOX COUNTER
====================================================== */

.lightbox-counter {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(255,255,255,.15);
    padding: 6px 18px;
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 500;
}
