:root {
    --gold-main: #C89B3C;
    --gold-light: #EAD9A0;
    --gold-dark: #B58B3A;
}
/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #6B6B6B;
}

/* ================= HEADER ================= */
header {
    position: sticky;
    top: 0;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 15px 40px;
    height: 75px;
    z-index: 1000;

    /* GLASS + GOLD BACKGROUND */
    background: rgba(248,245,239,0.85);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(200,155,60,0.25);
    border-radius: 0 0 20px 20px;

    /* 🔥 REALISTIC DEPTH */
    box-shadow:
        0 10px 25px rgba(0,0,0,0.08),
        0 4px 10px rgba(0,0,0,0.05),

        /* GOLD AMBIENT GLOW */
        0 0 25px rgba(200,155,60,0.15),

        /* INNER LIGHT */
        inset 0 1px 0 rgba(255,255,255,0.7);
}

header::after {
    content: "";
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);

    width: 90%;
    height: 40px;

    background: radial-gradient(
        ellipse at center,
        rgba(200,155,60,0.35) 0%,
        rgba(200,155,60,0.15) 40%,
        transparent 70%
    );

    filter: blur(12px);
    z-index: -1;
}

nav a {
    position: relative;
    margin: 0 12px;
    text-decoration: none;
    color: #6B6B6B;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: #B58B3A;
}

/* GOLD UNDERLINE GLOW */
nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;

    background: linear-gradient(90deg,#C89B3C,#EAD9A0);

    transition: 0.3s;
}

nav a:hover::after {
    width: 70%;
    box-shadow: 0 0 8px rgba(200,155,60,0.7);
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 22px;
    color: #B58B3A;
    cursor: pointer;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 22px;
    color: #B58B3A;
    cursor: pointer;
}

@media(max-width:768px){

    header {
        padding: 12px 20px;
        position: relative;
        height: 85px;
    }

    .menu-toggle {
        display: block;
        z-index: 1100;
    }

@media(max-width:768px){

    .menu-toggle {
        display: block;
        z-index: 1101;
    }

    nav {
        position: fixed;
        top: 75px; /* EXACT same as header */
        left: 0;
        width: 100%;
        background: #F8F5EF;

        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 25px 0;

        transform: translateY(-120%);
        transition: 0.4s ease;

        box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        border-top: 1px solid rgba(181,139,58,0.1);

        z-index: 1000;
    }

    nav.active {
        transform: translateY(0);
    }

    nav a {
        width: 85%;
        text-align: center;
        padding: 12px;
        border-radius: 12px;
        background: #FFFFFF;
    }

}

    /* ACTIVE STATE */
    nav.active {
        transform: translateY(0);
    }

    /* LINKS */
    nav a {
        width: 85%;
        text-align: center;
        padding: 12px;
        border-radius: 12px;
        background: #FFFFFF;
    }

    nav a:hover {
        background: rgba(200,155,60,0.1);
    }

}

.logo img {
    height: 65px;
    width: auto;
}

nav a {
    margin: 0 12px;
    text-decoration: none;
    color: #6B6B6B;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: #B58B3A;
}

/* .login-btn {
    background: linear-gradient(
        145deg,
        #E6C97A,
        #C89B3C,
        #B58B3A,
        #9F742A
    );

    padding: 8px 20px;
    border-radius: 30px;
    color: #fff !important;

    box-shadow:
        0 5px 12px rgba(0,0,0,0.15),
        0 0 12px rgba(200,155,60,0.4);

    transition: 0.3s;
} */

/* .login-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 20px rgba(0,0,0,0.2),
        0 0 18px rgba(200,155,60,0.7);
} */

.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        radial-gradient(circle at 20% 30%, rgba(200,155,60,0.12) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(200,155,60,0.12) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(200,155,60,0.08) 1px, transparent 1px),
        radial-gradient(circle at 70% 20%, rgba(200,155,60,0.08) 1px, transparent 1px);

    background-size: 120px 120px;
    opacity: 0.6;

    pointer-events: none;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background: radial-gradient(
        ellipse at center,
        rgba(200,155,60,0.15) 0%,
        rgba(200,155,60,0.08) 40%,
        transparent 70%
    );

    pointer-events: none;
}



/* ================= HERO ================= */
.hero {
    text-align: center;
    padding: 120px 20px 80px;
    position: relative;
    max-width: 1000px;
    margin: auto;
}

.tagline {
    color: #9A9A9A;
    font-size: 16px;
    margin-bottom: 10px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #C89B3C;
    line-height: 1.3;
    margin: 20px 0;
}

.subtext {
    max-width: 600px;
    margin: 0 auto 25px;
    font-size: 16px;
    color: #6B6B6B;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* BUTTON */
.btn {
    position: relative;
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;

    background: linear-gradient(145deg, #D4AF37, #B58B3A);

    /* 3D DEPTH */
    box-shadow:
        0 6px 0 #9c7a2b, /* hard bottom edge */
        0 12px 20px rgba(0,0,0,0.15), /* main shadow */
        0 25px 40px rgba(200,155,60,0.25), /* gold spread */
        inset 0 2px 3px rgba(255,255,255,0.6), /* top shine */
        inset 0 -3px 6px rgba(0,0,0,0.15); /* bottom depth */

    transition: all 0.25s ease;
}

.btn:hover {
    transform: translateY(2px);

    box-shadow:
        0 3px 0 #9c7a2b,
        0 8px 15px rgba(0,0,0,0.15),
        0 15px 25px rgba(200,155,60,0.25),
        inset 0 2px 3px rgba(255,255,255,0.6),
        inset 0 -3px 6px rgba(0,0,0,0.2);
}

.gold-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 14px 32px;
    border-radius: 50px;

    font-weight: 500;
    font-size: 16px;
    color: #fff;
    text-decoration: none;

    /* GOLD GRADIENT */
    background: linear-gradient(
        145deg,
        #E6C97A 0%,
        #C89B3C 40%,
        #B58B3A 60%,
        #9F742A 100%
    );

    /* OUTER DEPTH SHADOW */
    box-shadow:
        0 8px 15px rgba(0,0,0,0.15),
        0 3px 6px rgba(0,0,0,0.1),

        /* GOLD GLOW */
        0 0 15px rgba(200,155,60,0.35);

    transition: all 0.3s ease;
}

/* 🔥 TOP SHINE EFFECT */
.gold-btn::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 6%;
    width: 88%;
    height: 45%;

    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.7),
        rgba(255,255,255,0.1)
    );

    border-radius: 50px;
    filter: blur(1px);
}

/* 🔥 BOTTOM GLOW (IMPORTANT REALISM) */
.gold-btn::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);

    width: 120%;
    height: 30px;

    background: radial-gradient(
        ellipse at center,
        rgba(200,155,60,0.5) 0%,
        rgba(200,155,60,0.2) 40%,
        transparent 70%
    );

    filter: blur(10px);
    z-index: -1;
}

/* 🔥 HOVER EFFECT */
.gold-btn:hover {
    transform: translateY(-4px) scale(1.02);

    box-shadow:
        0 12px 25px rgba(0,0,0,0.2),
        0 6px 10px rgba(0,0,0,0.15),
        0 0 25px rgba(200,155,60,0.6);
}

/* ICON STYLE */
.gold-btn i {
    font-size: 16px;
}

.btn::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);

    width: 90%;
    height: 20px;

    background: radial-gradient(
        ellipse at center,
        rgba(0,0,0,0.25) 0%,
        rgba(0,0,0,0.15) 40%,
        transparent 70%
    );

    filter: blur(6px);
    z-index: -1;
}

.btn::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 50px;

    background: linear-gradient(135deg,#EAD9A0,#C89B3C,#B58B3A);
    opacity: 0.25;
    filter: blur(6px);

    z-index: -2;
}

.btn:hover::after {
    width: 140%;
    height: 45px;

    background: radial-gradient(
        ellipse at center,
        rgba(200,155,60,0.8) 0%,
        rgba(200,155,60,0.4) 40%,
        transparent 75%
    );
}

header::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 20px;

    background: radial-gradient(
        ellipse at center,
        rgba(200,155,60,0.3),
        transparent 70%
    );

    filter: blur(10px);
}

/* ================= FLOATING ICONS ================= */
.floating {
    position: absolute;
    color: #C89B3C;
    font-size: 18px;
    opacity: 0.6;
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ================= SECTIONS ================= */
.section {
    padding: 80px 20px;
    text-align: center;
}

.section h2 {
    font-family: 'Playfair Display', serif;
    color: #B58B3A;
    margin-bottom: 30px;
}

.alt-bg {
    background: #F3E7D3;
}

/* ================= CARDS ================= */
.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card {
    background: #FFFFFF;
    padding: 25px;
    border-radius: 18px;
    width: 230px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card i {
    font-size: 24px;
    margin-bottom: 10px;
    color: #B58B3A;
}

/* ================= PROBLEM ================= */
.problem-box {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 18px;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.problem-text {
    margin-top: 15px;
    color: #6B6B6B;
}

/* ================= FOOTER ================= */
.footer {
    background: #1F1F1F;
    color: #B58B3A;
    padding: 70px 20px 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1100px;
    margin: auto;
    margin-bottom: 40px;
}

.footer-col {
    max-width: 250px;
    margin: 15px;
}

.footer-col h2,
.footer-col h3 {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg,#C89B3C,#B58B3A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.footer-col a {
    display: block;
    color: #9A9A9A;
    text-decoration: none;
    margin: 6px 0;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #C89B3C;
}

.footer-col p {
    color: #9A9A9A;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    color: #9A9A9A;
    font-size: 14px;
}

.credit {
    margin-top: 8px;
    font-size: 14px;
    color: #E74C3C;
}

/* ================= MOBILE ================= */
@media(max-width:768px){

    header {
        padding: 15px 20px;
    }

   

    .hero {
        padding: 80px 15px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .cards {
        flex-direction: column;
        align-items: center;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.gold-btn {
    position: relative;
    overflow: visible; /* IMPORTANT */
}


.gold-btn:hover::before {
    width: 60%;

    box-shadow:
        0 0 8px rgba(255,255,255,0.9),
        0 0 15px rgba(200,155,60,0.8);
}

.gold-btn .underline {
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    
    width: 0%;
    height: 2px;

    background: linear-gradient(90deg,#EAD9A0,#fff,#EAD9A0);
    transition: 0.4s ease;
}

.gold-btn:hover .underline {
    width: 60%;

    box-shadow:
        0 0 8px rgba(255,255,255,0.9),
        0 0 15px rgba(200,155,60,0.8);
}





.card {
    background: #FFFFFF;
    padding: 25px;
    border-radius: 18px;
    width: 230px;

    border: 1px solid rgba(200,155,60,0.2);

    box-shadow:
        0 8px 20px rgba(0,0,0,0.05),
        0 0 15px rgba(200,155,60,0.08);

    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 15px 30px rgba(0,0,0,0.1),
        0 0 25px rgba(200,155,60,0.25);
}
.problem-box {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 18px;

    border: 1px solid rgba(200,155,60,0.2);

    box-shadow:
        0 10px 25px rgba(0,0,0,0.05),
        0 0 15px rgba(200,155,60,0.1);
}

.section {
    position: relative;
}

.section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 30px;

    background: radial-gradient(
        ellipse at center,
        rgba(200,155,60,0.15),
        transparent 70%
    );

    filter: blur(12px);
}

/* ABOUT HERO */
.about-hero {
    text-align: center;
    padding: 100px 20px;
    background: #F3E7D3;
}

.about-hero h1 {
    font-family: 'Playfair Display', serif;
    color: #B58B3A;
    font-size: 38px;
}

.about-hero p {
    color: #6B6B6B;
}

/* ABOUT TEXT */
.about-text {
    max-width: 700px;
    margin: auto;
    color: #6B6B6B;
    line-height: 1.8;
}

/* ANIMATION */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}
/* SERVICE CARDS */
.service-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 18px;
    width: 260px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
}

.service-card h3 {
    color: #B58B3A;
    margin-bottom: 15px;
}

.service-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.service-card ul li {
    margin: 8px 0;
    color: #6B6B6B;
}

/* PREMIUM STYLE */


/* BUTTON */
.btn.unlocked {
    background: #B58B3A;
    cursor: default;
}

/* LOCK EFFECT */
.service-card::before {
    content: "🔒 Locked";
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 12px;
    color: #B58B3A;
}

.service-card .unlocked ~ ::before {
    display: none;
}



.shagun-icon {
    font-size: 30px;
    color: #E36A6A;
    margin-bottom: 10px;
}

.card h3 {
    font-size: 22px;
    margin: 5px 0;
}

.tag {
    font-style: italic;
    color: #888;
    margin-bottom: 10px;
    margin-top: -20px;
}



/* Card layout fix */
.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* IMPORTANT */
    padding-top: 20px;
}

/* Envelope container */
.env-wrap {
    height: 80px;  /* CONTROL HEIGHT */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Envelope image */
.env-img {
    width: 70px;   /* SMALL SIZE (FIXED) */
    height: auto;
    margin-bottom: 2px;
}

/* Text spacing */
.card h3 {
    margin-top: px;
}

/* ================= AUTH PAGE ================= */

.auth-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

    /* SOFT GOLD BACKGROUND */
    background: linear-gradient(
        135deg,
        #F8F5EF,
        #F3E7D3
    );
}

/* BOX */
.auth-box {
    width: 100%;
    max-width: 420px;

    padding: 40px 30px;
    border-radius: 20px;

    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(200,155,60,0.2);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.08),
        0 0 25px rgba(200,155,60,0.15);

    text-align: center;
}

/* HEADING */
.auth-box h2 {
    font-family: 'Playfair Display', serif;
    color: var(--gold-dark);
    margin-bottom: 10px;
}

/* SUBTEXT */
.auth-sub {
    font-size: 14px;
    color: #888;
    margin-bottom: 25px;
}

/* INPUT GROUP */
.input-group {
    position: relative;
    margin-bottom: 18px;
}

/* ICON */
.input-group i {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: var(--gold-main);
}

/* INPUT */
.input-group input {
    width: 100%;
    padding: 12px 12px 12px 40px;

    border-radius: 12px;
    border: 1px solid #ddd;

    outline: none;
    transition: 0.3s;

    font-family: 'Poppins', sans-serif;
}

/* INPUT FOCUS */
.input-group input:focus {
    border-color: var(--gold-main);

    box-shadow:
        0 0 8px rgba(200,155,60,0.3);
}

/* SWITCH TEXT */
.switch {
    margin-top: 15px;
    font-size: 14px;
}

.switch a {
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 500;
}

/* ERROR */
.error {
    color: #e74c3c;
    margin-bottom: 10px;
}

/* MOBILE FIX */
@media(max-width:768px){
    .auth-box {
        margin: 20px;
        padding: 30px 20px;
    }
}

.gold-btn {
    border: none;          /* remove button border */
    outline: none;

        /* prevent default button bg */
}

.success-msg {
    margin-bottom: 1px;
    padding: 12px 18px;
    border-radius: 12px;

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

    /* LIGHT GOLD BACKGROUND */
    background: linear-gradient(
        135deg,
        rgba(200,155,60,0.15),
        rgba(234,217,160,0.25)
    );

    /* BORDER */
    border: 1px solid rgba(200,155,60,0.4);

    /* TEXT COLOR */
    color: #B58B3A;

    /* SOFT GLOW */
    box-shadow:
        0 5px 15px rgba(200,155,60,0.15),
        inset 0 1px 2px rgba(255,255,255,0.5);

    text-align: center;
    backdrop-filter: blur(6px);
}
.success-msg {
    animation: fadeSlide 0.5s ease;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-box {
    background: #F8F5EF;
    padding: 20px;
    border-radius: 15px;
    margin: 20px auto;
    max-width: 400px;
    text-align: center;
}

.profile-img {
    width: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.notification {
    background: #FFF8E5;
    padding: 10px;
    border-radius: 10px;
    margin: 15px auto;
    max-width: 500px;
}

.search-box input {
    padding: 10px;
    width: 300px;
    border-radius: 10px;
    border: 1px solid #ddd;
    margin: 20px 0;
}

.shagun-form {
    max-width: 400px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.shagun-form input,
.shagun-form textarea,
.shagun-form select {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

/* DASHBOARD LAYOUT */
.dashboard {
    display: flex;
    min-height: 100vh;
}

/* SIDEBAR */
.sidebar {
    width: 240px;
    background: #F8F5EF;
    border-right: 1px solid rgba(200,155,60,0.2);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar .logo {
    font-family: 'Playfair Display', serif;
    color: #B58B3A;
    margin-bottom: 20px;
}

.sidebar a {
    text-decoration: none;
    color: #6B6B6B;
    padding: 10px 15px;
    border-radius: 10px;
    transition: 0.3s;
}

.sidebar a:hover {
    background: rgba(200,155,60,0.1);
    color: #B58B3A;
}

.sidebar .logout {
    
    color: #E74C3C;
}

/* MAIN */
.main {
    flex: 1;
    padding: 30px;
}

/* TOP BAR */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.top-bar input {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ddd;
    width: 250px;
}

/* NOTIFICATION */
.notification {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid rgba(200,155,60,0.2);
}



/* ================= PROFILE SECTION ================= */

.profile-box {
    max-width: 500px;
    margin: 40px auto;
    padding: 40px 30px;

    background: #F8F5EF;
    border-radius: 20px;

    border: 1px solid rgba(200,155,60,0.2);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.08),
        0 0 20px rgba(200,155,60,0.15);

    text-align: center;
}

/* PROFILE IMAGE */
.profile-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;

    margin-bottom: 20px;

    border: 3px solid #C89B3C;

    box-shadow:
        0 0 15px rgba(200,155,60,0.4);
}

/* FORM LAYOUT */
.profile-box form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* INPUT STYLE */
.profile-box input[type="text"],
.profile-box input[type="email"] {
    padding: 12px 15px;
    border-radius: 10px;

    border: 1px solid rgba(200,155,60,0.3);

    outline: none;
    font-size: 14px;

    background: #fff;

    transition: 0.3s;
}

.profile-box input:focus {
    border-color: #C89B3C;
    box-shadow: 0 0 8px rgba(200,155,60,0.3);
}

/* FILE INPUT */
.profile-box input[type="file"] {
    padding: 8px;
    border-radius: 10px;
    background: #fff;
    border: 1px dashed #C89B3C;
    cursor: pointer;
}

/* BUTTON FIX */
.profile-box .gold-btn {
    margin-top: 10px;
    justify-content: center;
}

/* MOBILE */
@media(max-width:768px){
    .profile-box {
        padding: 25px 20px;
    }
}

/* PROFILE IMAGE WRAP */
.profile-img-wrap {
    position: relative;
    width: 120px;
    margin: 0 auto 20px;
}

/* IMAGE */
.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;

    border: 3px solid #C89B3C;

    box-shadow:
        0 0 20px rgba(200,155,60,0.5);
}

/* EDIT ICON */
.edit-icon {
    position: absolute;
    bottom: 5px;
    right: 5px;

    background: #C89B3C;
    color: #fff;

    width: 35px;
    height: 35px;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

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

.edit-icon:hover {
    background: #B58B3A;
}

/* NAV PROFILE */
.nav-profile {
    margin-left: 10px;
}

.nav-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;

    border: 2px solid #C89B3C;

    transition: 0.3s;
}

.nav-img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(200,155,60,0.6);
}

.search-box input {
    width: 320px;
    padding: 12px;
    border-radius: 30px;
    border: 1px solid #ddd;
    outline: none;
    text-align: center;
}



/* MOBILE */
@media(max-width:768px){

  


    .main{
        margin-left:0;
        padding:20px;
    }
}
.row{
    display:flex;
    gap:15px;
    margin-bottom:15px;
}

.row input{
    flex:1;
}

@media(max-width:768px){
    .row{
        flex-direction:column;
    }
}

.event-form {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    max-width: 800px;
}

.row {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.row input {
    flex: 1;
}

.event-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

/* MOBILE */
@media(max-width:768px){
    .row {
        flex-direction: column;
    }
}

.field {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.field label {
    font-size: 14px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 500;
}

.full {
    width: 100%;
}

.row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

/* Mobile */
@media(max-width:768px){
    .row {
        flex-direction: column;
    }
}

#searchResults {
    margin-top: 20px;
}
/* Search Results */
#searchResults {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Card */
.event-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: 0.3s;
}

.event-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

/* Image */
.event-img {
    width: 65px;
    height: 65px;
    border-radius: 10px;
    object-fit: cover;
    background: #eee;
}

/* Info */
.event-info h3 {
    margin: 0;
    font-size: 17px;
    color: #333;
}

.event-info p {
    margin: 3px 0;
    font-size: 13px;
    color: #777;
}

/* No result */
.no-result {
    padding: 10px;
    text-align: center;
    color: #999;
}

/* Mobile */
@media (max-width: 600px) {
    .event-card {
        padding: 10px;
    }

    .event-img {
        width: 55px;
        height: 55px;
    }

    .event-info h3 {
        font-size: 15px;
    }
}
/* CARD */
.event-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: 0.3s ease;
    border: 1px solid #f3e7d3;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

/* IMAGE */
.event-image-wrap {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f8f8;
    flex-shrink: 0;
}

.event-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT */
.event-content {
    flex: 1;
}

/* TITLE */
.event-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

/* META */
.event-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.event-code {
    font-size: 13px;
    color: #777;
    background: #f3f3f3;
    padding: 4px 10px;
    border-radius: 20px;
}

/* DATE (IMPORTANT UPGRADE) */
.event-date {
    font-size: 13px;
    color: #fff;
    background: linear-gradient(135deg, #d4af37, #b8962e);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
}

/* BUTTONS */
.event-actions {
    display: flex;
    gap: 10px;
}

/* VIEW BUTTON */
.view-btn {
    padding: 8px 16px;
    border-radius: 20px;
    background: #eee;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.view-btn:hover {
    background: #ddd;
}

/* SHAGUN BUTTON (MAIN CTA) */
.shagun-btn {
    padding: 8px 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.shagun-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(212,175,55,0.4);
}

/* MOBILE */
@media (max-width: 600px) {
    .event-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .event-image-wrap {
        width: 100%;
        height: 160px;
    }

    .event-actions {
        width: 100%;
    }

    .view-btn,
    .shagun-btn {
        flex: 1;
        text-align: center;
    }
}
/* SEARCH BOX */
.search-container {
    max-width: 700px;
    margin: 30px auto;
}

#searchInput {
    width: 100%;
    padding: 14px 18px;
    border-radius: 30px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* RESULTS */
#searchResults {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* CARD */
.event-card {
    background: #fff;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    border: 1px solid #f1e3c6;
    transition: 0.3s;
}

.event-card:hover {
    transform: translateY(-3px);
}

/* FLEX */
.event-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* IMAGE */
.event-left img {
    width: 85px;
    height: 85px;
    border-radius: 12px;
    object-fit: cover;
    background: #f3f3f3;
}

/* DETAILS */
.event-details {
    flex: 1;
}

.event-details h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
}

/* META */
.meta {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.code {
    background: #f2f2f2;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    color: #666;
}

.date {
    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
}

/* BUTTONS */
.actions {
    display: flex;
    gap: 10px;
}

.view-btn {
    background: #eee;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 12px;
    text-decoration: none;
    color: #333;
}

.shagun-btn {
    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #fff;
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 12px;
    text-decoration: none;
}

/* NO RESULT */
.no-result {
    text-align: center;
    color: #999;
}

/* MOBILE */
@media (max-width: 600px) {

    .event-left {
        flex-direction: column;
        align-items: flex-start;
    }

    .event-left img {
        width: 100%;
        height: 160px;
    }

    .actions {
        width: 100%;
    }

    .view-btn,
    .shagun-btn {
        flex: 1;
        text-align: center;
    }
}
/* EVENT ROW DESIGN */
.event-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    background: #fff;
    padding: 15px 20px;
    margin-bottom: 15px;

    border-radius: 14px;
    border: 1px solid #eee;

    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.event-row:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* IMAGE */
.event-img img{
    width: 55px;
    height: 55px;
    border-radius: 12px;
    object-fit: cover;
}

/* NAME */
.event-name{
    flex: 2;
    font-weight: 600;
    font-size: 16px;
}

/* CODE */
.event-code{
    flex: 1;
    background: #f3f3f3;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
}

/* DATE */
.event-date{
    flex: 1;
    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    text-align: center;
}

/* ACTION BUTTONS */
.event-actions{
    display: flex;
    gap: 10px;
}

/* VIEW BUTTON */
.view-btn{
    background: #eee;
    padding: 8px 14px;
    border-radius: 20px;
    text-decoration: none;
    color: #333;
    font-size: 13px;
}

/* SHAGUN BUTTON */
.shagun-btn{
    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px){

    .event-row{
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .event-actions{
        width: 100%;
        justify-content: space-between;
    }

    .event-date,
    .event-code{
        width: fit-content;
    }
}
/* MAIN ROW */
.event-row{
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;
    padding: 15px 20px;
    margin-bottom: 15px;

    background: #fff;
    border-radius: 14px;
    border: 1px solid #eee;

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

/* IMAGE */
.event-img img{
    width: 55px;
    height: 55px;
    border-radius: 12px;
    object-fit: cover;
}

/* CODE */
.event-code{
    min-width: 120px;
    font-size: 13px;
    background: #f3f3f3;
    padding: 6px 12px;
    border-radius: 20px;
    text-align: center;
}

/* NAME (CENTER FOCUS) */
.event-name{
    flex: 1;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

/* DATE */
.event-date{
    min-width: 130px;
    text-align: center;
    font-size: 13px;

    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #fff;

    padding: 6px 12px;
    border-radius: 20px;
}

/* ACTION BUTTONS */
.event-actions{
    display: flex;
    gap: 10px;
}

/* MOBILE FIX */
@media (max-width: 768px){

    .event-row{
        flex-direction: column;
        align-items: flex-start;
    }

    .event-name{
        text-align: left;
    }

    .event-actions{
        width: 100%;
        justify-content: space-between;
    }
}

/* ROW LAYOUT */
.event-row{
    display: grid;
    grid-template-columns: 80px 140px 1fr 180px 220px;
    align-items: center;
    gap: 15px;

    background: #f9f9f9;
    border-radius: 15px;
    padding: 15px 20px;
    margin-bottom: 15px;

    border: 1px solid #eee;
    transition: 0.3s;
}

.event-row:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* IMAGE */
.event-img img{
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
}

/* NAME */
.event-name{
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

/* CODE */
.event-code{
    background: #eee;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
}

/* DATE */
.event-date{
    background: linear-gradient(45deg,#d4af37,#c89b2c);
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
    text-align: center;
}

/* ACTIONS */
.event-actions{
    display: flex;
    gap: 10px;
    justify-content: center;
}

/* BUTTONS */
.view-btn{
    background: #e5e5e5;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.shagun-btn{
    background: linear-gradient(45deg,#d4af37,#c89b2c);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
}

/* SEARCH */
.search-container{
    margin-bottom: 20px;
}

#searchInput{
    width: 100%;
    padding: 12px;
    border-radius: 25px;
    border: 1px solid #ddd;
}

/* MOBILE RESPONSIVE */
@media(max-width:768px){

.event-row{
    grid-template-columns: 1fr;
    text-align: center;
}

.event-actions{
    justify-content: center;
    flex-wrap: wrap;
}

.event-name{
    font-size: 18px;
}

}

/* ================= HEADER ================= */
.event-header{
    text-align: center;
    margin-bottom: -80px;
}

.event-profile{
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #d4af37;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    margin-bottom: 15px;
}

.event-title{
    font-size: 26px;
    font-weight: 600;
    color: #333;
}

/* ================= MOBILE ================= */
@media(max-width:768px){

    .event-profile{
        width: 90px;
        height: 90px;
    }

    .event-title{
        font-size: 20px;
    }}

    /* ================= MOBILE ONLY ================= */
@media (max-width: 768px) {

    .sidebar {
        width: 70px !important;
    }

    .sidebar .text {
        display: none; /* hide text only on mobile */
    }

    .sidebar a {
        text-align: center;
        padding: 15px 0;
        font-size: 20px;
    }

    .logo {
        text-align: center;
        font-size: 22px;
    }

    /* .main {
        margin-left: 70px !important;
    } */
}

.section h2 {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    
}
.shagun-title {
    display: block !important;
    color: #000;
    font-size: 22px;
    margin: -80px 0;
    text-align: center;
}

@media (max-width: 768px){
    .shagun-title {
        font-size: 20px;
        padding: 10px;
        line-height: 1.4;
    }
}
/* ===== MY EVENTS SECTION ONLY ===== */
.my-events .cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* CARD DESIGN */
.my-events .card {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* EVENT IMAGE */
.my-events .card .event-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

/* TITLE */
.my-events .card h3 {
    margin: 12px 0 6px;
    font-size: 20px;
    color: #333;
}

/* TEXT */
.my-events .card p {
    margin: 3px 0;
    font-size: 14px;
    color: #666;
}

/* QR IMAGE */
.my-events .card .qr-img {
    width: 120px;
    margin: 10px auto;
}

/* SHARE BUTTON */
.my-events .card .gold-btn {
    margin-top: 12px;
}
@media (max-width: 768px){

    .my-events .cards {
        grid-template-columns: repeat(2, 1fr); /* ✅ 2 per row */
        gap: 10px;
    }

    .my-events .card {
        padding: 10px;
        border-radius: 12px;
    }

    /* IMAGE */
    .my-events .card .event-img {
        height: 120px; /* smaller for mobile */
        border-radius: 10px;
    }

    /* TITLE */
    .my-events .card h3 {
        font-size: 14px;
        line-height: 1.3;
    }

    /* TEXT */
    .my-events .card p {
        font-size: 11px;
    }

    /* QR */
    .my-events .card .qr-img {
        width: 70px;
    }

    /* BUTTON */
    .my-events .card .gold-btn {
        font-size: 12px;
        padding: 6px;
    }
}
@media (max-width: 480px){

    .my-events .cards {
        gap: 8px;
    }

    .my-events .card .event-img {
        height: 100px;
    }

    .my-events .card h3 {
        font-size: 13px;
    }

    .my-events .card .qr-img {
        width: 60px;
    }
}
/* ================= RECEIVED SHAGUN ================= */

.received-shagun{

    margin-top:20px;

    text-align:left;
}

.received-shagun h4{

    margin-bottom:15px;

    color:#222;
}

/* ================= SHAGUN BOX ================= */

.shagun-box{

    background:#fff8e7;

    padding:14px;

    margin-top:12px;

    border-radius:14px;

    border:1px solid #f1d58a;

    box-shadow:0 3px 10px rgba(0,0,0,0.05);
}

.shagun-box p{

    margin:8px 0;

    font-size:15px;

    color:#444;

    word-break:break-word;
}

/* ================= IMAGE ================= */

.shagun-img{

    width:100%;

    max-width:220px;

    margin-top:10px;

    border-radius:12px;

    border:1px solid #ddd;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .shagun-box{

        padding:12px;
    }

    .shagun-img{

        max-width:100%;
    }
}

/* ================= TOTAL SHAGUN PAGE ================= */

.shagun-event-box{

    background:#fff;

    padding:25px;

    border-radius:20px;

    margin-bottom:30px;

    box-shadow:0 5px 20px rgba(0,0,0,0.06);
}

/* ================= SHAGUN CARD ================= */

.shagun-card{

    background:#fff8e7;

    border:1px solid #f3d38a;

    border-radius:16px;

    padding:18px;

    margin-top:18px;
}

/* ================= TOP ================= */

.shagun-top{

    display:flex;

    justify-content:space-between;

    align-items:center;
}

/* ================= AMOUNT ================= */

.amount{

    color:#b8860b;

    font-size:20px;

    font-weight:700;

    margin-top:5px;
}

/* ================= MESSAGE ================= */

.message{

    margin-top:12px;

    font-size:15px;

    color:#444;

    line-height:1.6;
}

/* ================= IMAGE ================= */

.payment-img{

    width:100%;

    max-width:240px;

    margin-top:15px;

    border-radius:14px;

    border:1px solid #ddd;
}

/* ================= EMPTY ================= */

.no-shagun{

    color:#777;

    margin-top:10px;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .shagun-event-box{

        padding:18px;
    }

    .shagun-card{

        padding:14px;
    }

    .amount{

        font-size:18px;
    }

    .payment-img{

        max-width:100%;
    }
}

.table-wrapper{
    width:100%;
    overflow-x:auto;
    margin-top:20px;
}

.shagun-table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.shagun-table th{
    background:#d4af37;
    color:#fff;
    padding:14px;
    text-align:left;
    font-size:14px;
}

.shagun-table td{
    padding:12px;
    border-bottom:1px solid #eee;
    font-size:14px;
    vertical-align:middle;
}

.shagun-table tr:hover{
    background:#faf7ea;
}

.amount-cell{
    font-weight:bold;
    color:green;
}

.table-img{
    width:60px;
    height:60px;
    object-fit:cover;
    border-radius:8px;
    border:1px solid #ddd;
}

/* ================= SHAGUN SHEET RESPONSIVE ONLY ================= */

.table-wrapper{
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 18px;
}

.shagun-table{
    width: 100%;
    min-width: 850px;
    border-collapse: collapse;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
}

.shagun-table thead{
    background: #d4af37;
    color: #fff;
}

.shagun-table th{
    padding: 18px 16px;
    text-align: left;
    font-size: 17px;
    white-space: nowrap;
}

.shagun-table td{
    padding: 18px 16px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    white-space: nowrap;
    vertical-align: middle;
}

.amount-cell{
    color: green;
    font-weight: bold;
}

.table-img{
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
}

/* ================= MOBILE ONLY ================= */

@media(max-width:768px){

.table-wrapper{
    overflow-x: auto;
}

.shagun-table{
    min-width: 700px;
}

.shagun-table th{
    font-size: 14px;
    padding: 12px;
}

.shagun-table td{
    font-size: 13px;
    padding: 12px;
}

.table-img{
    width: 45px;
    height: 45px;
}

}

@media(max-width:480px){

.shagun-table{
    min-width: 650px;
}

.shagun-table th,
.shagun-table td{
    font-size: 12px;
    padding: 10px;
}

.table-img{
    width: 40px;
    height: 40px;
}

}
/* ================= MAIN ================= */

.main{
    width: 100%;
    overflow-x: hidden;
    padding: 20px;
    box-sizing: border-box;
}

/* ================= EVENTS GRID ================= */

.events-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 280px));
    gap: 20px;
    margin-top: 20px;
}

/* ================= EVENT CARD ================= */

.event-card{
    background: #fff;
    border-radius: 18px;
    padding: 15px;
    border: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);

    display: flex;
    flex-direction: column;
    align-items: center;

    transition: 0.3s;
}

.event-card:hover{
    transform: translateY(-3px);
}

/* ================= EVENT IMAGE ================= */

.event-img{
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
}

/* ================= TITLE ================= */

.event-card h3{
    font-size: 20px;
    margin-top: 12px;
    margin-bottom: 8px;
    text-align: center;
    color: #333;
    line-height: 1.4;
}

/* ================= TEXT ================= */

.event-card p{
    margin: 4px 0;
    font-size: 14px;
    color: #555;
    text-align: center;
}

/* ================= QR ================= */

.qr-img{
    width: 110px;
    height: 110px;
    margin: 12px 0;
}

/* ================= LINK ================= */

.event-link{
    font-size: 11px !important;
    word-break: break-all;
    color: #777;
    margin-bottom: 12px;
}

/* ================= BUTTON ================= */

/* .gold-btn{
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
} */

.gold-btn:hover{
    opacity: 0.9;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .events-grid{
        grid-template-columns: 1fr;
    }

}
/* ================= MOBILE EVENT CARDS ================= */

@media(max-width:768px){

    .events-grid{
        justify-content: center;
        gap: 12px;
    }

    .event-card{
        width: 150px;
        padding: 8px;
        border-radius: 12px;
    }

    .event-img{
        width: 100%;
        height: 85px;
        object-fit: cover;
        border-radius: 8px;
    }

    .event-card h3{
        font-size: 13px;
        margin: 6px 0 3px;
        line-height: 1.2;
    }

    .event-card p{
        font-size: 11px;
        margin: 2px 0;
    }

    .qr-img{
        width: 45px;
        height: 45px;
        margin: 5px auto;
    }

    .gold-btn{
        padding: 5px 10px;
        font-size: 11px;
        margin-top: 5px;
    }

}
/* ================= STANDARD MEMBERS ================= */

.member-box{

    border:1px solid #eee;

    padding:12px;

    border-radius:12px;

    margin-top:12px;

    background:#fafafa;
}

.add-member-btn{

    width:100% !important;

    margin-top:15px !important;
}
/* ================= SPLIT OPTIONS ================= */

.split-options{
    margin-top:15px;
}

.split-card{
    display:flex;
    gap:12px;
    align-items:flex-start;

    border:1px solid #ddd;

    padding:14px;

    border-radius:14px;

    margin-bottom:12px;

    cursor:pointer;

    transition:.2s;
}

.split-card:hover{
    border-color:#d4af37;
    background:#fffaf0;
}

.split-card input{
    width:auto !important;
    margin-top:5px;
}

.split-card h4{
    margin:0;
    font-size:16px;
}

.split-card p{
    margin:4px 0 0;
    font-size:13px;
    color:#666;
}

/* ================= MEMBER BOX ================= */

.member-box{

    border:1px solid #eee;

    padding:15px;

    border-radius:14px;

    margin-top:15px;

    background:#fafafa;
}

/* ================= PREMIUM ================= */

.premium-box{
    margin-top:10px;
}

.upload-label{
    display:block;
    margin-top:15px;
    margin-bottom:5px;
    font-weight:600;
    color:#444;
}

.premium-box textarea{
    min-height:90px;
}

.premium-box input[type="file"]{
    background:#fafafa;
    padding:10px;
}

/* ================= VIDEO ================= */

video.preview-video{
    width:100%;
    border-radius:12px;
    margin-top:10px;
}

.table-img{
    width:100px;
    border-radius:10px;
}

video{
    border-radius:10px;
}

/* ================= TABLE WRAPPER ================= */

.table-wrapper{
    width:100%;
    overflow-x:auto;
    margin-top:20px;
    border-radius:18px;
    background:#fff;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

/* ================= TABLE ================= */

.shagun-table{
    width:100%;
    border-collapse:collapse;
    min-width:1100px;
    table-layout:fixed;
}

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

.shagun-table thead{
    background:#d4af37;
}

.shagun-table th{

    color:#fff;

    padding:16px 12px;

    font-size:15px;

    text-align:center;

    font-weight:600;

    white-space:nowrap;
}

/* ================= BODY ================= */

.shagun-table td{

    padding:14px 10px;

    text-align:center;

    vertical-align:middle;

    border-bottom:1px solid #f1f1f1;

    font-size:14px;

    color:#333;

    word-wrap:break-word;
}

/* ================= ROW HOVER ================= */

.shagun-table tbody tr:hover{
    background:#faf7ef;
    transition:.2s;
}

/* ================= AMOUNT ================= */

.amount-cell{

    color:#0f9d58;

    font-weight:700;

    font-size:15px;
}

/* ================= IMAGE ================= */

.table-img{

    width:70px;

    height:70px;

    object-fit:cover;

    border-radius:12px;

    border:2px solid #f3f3f3;

    transition:.2s;
}

.table-img:hover{
    transform:scale(1.05);
}

/* ================= VIDEO ================= */

.table-video{

    width:90px;

    height:70px;

    border-radius:12px;

    object-fit:cover;

    background:#000;
}

/* ================= MESSAGE ================= */

.message-cell{

    max-width:220px;

    white-space:normal;

    line-height:1.5;

    font-size:13px;
}

/* ================= EVENT NAME ================= */

.event-name{
    font-weight:600;
    color:#444;
}

/* ================= DATE ================= */

.date-cell{
    white-space:nowrap;
    color:#777;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .shagun-table th,
    .shagun-table td{

        padding:10px 8px;

        font-size:12px;
    }

    .table-img{

        width:55px;
        height:55px;
    }

    .table-video{

        width:70px;
        height:55px;
    }

    .message-cell{
        max-width:160px;
    }
}

.shagun-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed; /* 🔥 IMPORTANT */
}

.shagun-table th,
.shagun-table td {
    padding: 10px;
    text-align: left;
    vertical-align: middle;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* 👇 Control column widths */
.shagun-table th:nth-child(1),
.shagun-table td:nth-child(1) {
    width: 40px;
}

.shagun-table th:nth-child(2),
.shagun-table td:nth-child(2) {
    width: 180px;
}

.shagun-table th:nth-child(3),
.shagun-table td:nth-child(3) {
    width: 140px;
}

.shagun-table th:nth-child(4),
.shagun-table td:nth-child(4) {
    width: 100px;
}

.shagun-table th:nth-child(5),
.shagun-table td:nth-child(5) {
    width: 220px;
}

.shagun-table th:nth-child(6),
.shagun-table td:nth-child(6),
.shagun-table th:nth-child(7),
.shagun-table td:nth-child(7) {
    width: 120px;
}

.shagun-table th:nth-child(8),
.shagun-table td:nth-child(8) {
    width: 120px;
}

.shagun-table th:nth-child(9),
.shagun-table td:nth-child(9) {
    width: 120px;
}
.table-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.table-video {
    width: 80px;
    height: 60px;
    object-fit: cover;
}
/* ===== SHAGUN SUMMARY CARDS ===== */
.sg-cards {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.sg-card {
    flex: 1;
    min-width: 160px;
    background: #ffffff;
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.sg-card h3 {
    font-size: 14px;
    margin-bottom: 5px;
}

.sg-card p {
    font-size: 18px;
    font-weight: bold;
}
/* ===== TABLE WRAPPER ===== */
.sg-table-wrap {
    width: 100%;
    overflow-x: auto;
}
/* ===== TABLE ===== */
.sg-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 850px; /* allows scroll on mobile */
}

.sg-table th,
.sg-table td {
    padding: 8px;
    font-size: 14px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.sg-table th {
    background: #fafafa;
    font-weight: 600;
}
.sg-img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 8px;
}

.sg-video {
    width: 70px;
    height: 50px;
}

.sg-text {
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {

    .sg-cards {
        flex-direction: column;
    }

    .sg-card {
        width: 100%;
        text-align: center;
    }

    .sg-table th,
    .sg-table td {
        font-size: 12px;
        padding: 6px;
    }

    .sg-img {
        width: 40px;
        height: 40px;
    }

    .sg-video {
        width: 55px;
        height: 40px;
    }

    .sg-btn {
        font-size: 12px;
        padding: 5px 8px;
    }
}
/* ===== THEME COLORS (EDIT THIS ONLY) ===== */
:root {
    --primary: #0f172a;        /* your site main color */
    --gold: #d4af37;           /* golden color */
    --card-bg: #ffffff;
    --text-dark: #111;
    --text-light: #666;
}

/* ===== SUMMARY WRAPPER ===== */
.sg-summary {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 15px 0;
}

/* ===== SMALL PREMIUM CARD ===== */
.sg-summary-card {
    flex: 1;
    min-width: 160px;
    max-width: 220px;

    background: var(--card-bg);
    border: 2px solid var(--gold);
    border-radius: 10px;

    padding: 12px 14px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    position: relative;
    overflow: hidden;

    transition: all 0.25s ease;
}

/* ✨ subtle golden glow */
.sg-summary-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(212,175,55,0.15), transparent);
    opacity: 0;
    transition: 0.3s;
}

/* hover effect */
.sg-summary-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.sg-summary-card:hover::before {
    opacity: 1;
}

/* ===== TEXT ===== */
.sg-label {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.sg-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .sg-summary {
        justify-content: space-between;
    }

    .sg-summary-card {
        flex: 0 0 48%;   /* 2 per row */
        max-width: 48%;
        padding: 10px;
    }

    .sg-value {
        font-size: 18px;
    }
}

/* Fix table layout */
.sg-table {
    width: 100%;
    table-layout: fixed; /* 🔥 forces column width */
}

/* Message column wrap */
.sg-table td,
.sg-table th {
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal; /* 🔥 allow multiline */
}

/* Specifically message column */
.sg-table td:nth-child(5) {
    max-width: 250px;   /* adjust as needed */
}

/* Optional: guest column */
.sg-table td:nth-child(3) {
    max-width: 150px;
}

.event-url{
    color:#444;
    text-decoration:none;
    word-break:break-all;
    transition:0.3s;
}

.event-url:hover{
    color:#d4af37;
    text-decoration:underline;
}

/* ================= QUICK OVERVIEW ================= */

.overview-wrapper{
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
    margin-top:25px;
    width:100%;
}

.overview-box{

    background:#fff;

    border-radius:24px;

    padding:28px;

    display:flex;

    align-items:center;

    gap:18px;

    min-height:140px;

    box-shadow:
    0 4px 20px rgba(0,0,0,0.06);

    border:1px solid #f1e4c8;

    transition:0.3s ease;
}

.overview-box:hover{
    transform:translateY(-4px);
}

.overview-icon{

    width:70px;
    height:70px;

    min-width:70px;

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:32px;

    background:linear-gradient(135deg,#fff5dc,#f6df9b);

    color:#b8860b;
}

.overview-content{
    flex:1;
}

.overview-content h4{

    margin:0;

    font-size:18px;

    font-weight:600;

    color:#777;
}

.overview-content h2{

    margin-top:10px;

    font-size:34px;

    color:#333;

    font-weight:700;
}

/* individual cards */

.overview-events{
    border-left:6px solid #d4af37;
}

.overview-plan{
    border-left:6px solid #c89b3c;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .overview-wrapper{
        grid-template-columns:1fr;
    }

    .overview-box{
        padding:22px;
        min-height:auto;
    }

    .overview-content h2{
        font-size:28px;
    }
}
/* ================= SEARCH EVENT CARD ================= */

.search-event-box{
    background:#fff;
    border-radius:22px;
    border:1px solid #f1e3c5;
    padding:16px;
    margin-bottom:16px;
    box-shadow:0 4px 15px rgba(0,0,0,0.05);
}

.search-event-left{
    display:flex;
    gap:16px;
    align-items:center;
}

.search-event-img{
    width:110px;
    height:110px;
    border-radius:18px;
    object-fit:cover;
    flex-shrink:0;
}

.search-event-details{
    flex:1;
}

.search-event-title{
    margin:0 0 10px;
    font-size:22px;
    color:#333;
    margin-left: -295px;
}

.search-event-meta{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-bottom:14px;
}

.search-event-code,
.search-event-date{
    font-size:14px;
    color:#777;
}

.search-event-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.search-view-btn,
.search-shagun-btn{
    padding:10px 18px;
    border-radius:12px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:0.3s;
}

.search-view-btn{
    background:#f5f5f5;
    color:#333;
}

.search-shagun-btn{
    background:#d4af37;
    color:#fff;
}

.search-view-btn:hover,
.search-shagun-btn:hover{
    transform:translateY(-2px);
}

/* MOBILE */

@media(max-width:600px){

    .search-event-left{
        flex-direction:column;
        align-items:flex-start;
    }

    .search-event-img{
        width:100%;
        height:200px;
    }

    .search-event-actions{
        width:100%;
    }

    .search-view-btn,
    .search-shagun-btn{
        flex:1;
        text-align:center;
    }
}

/* ================= HERO SECTION ================= */

.ss-hero-section{
    width:100%;
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    position:relative;
    overflow:hidden;
    padding:40px 20px;
    background:
    radial-gradient(circle at top,#fff7e7 0%,#fffdf9 40%,#ffffff 100%);
}

/* ================= CENTER IMAGE ================= */

.ss-hero-image{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:-8%;
    margin-top: -10%;
}

.ss-hero-image::before{
    content:'';
    position:absolute;
    width:520px;
    height:520px;
    border-radius:50%;
    background:radial-gradient(
        circle,
        rgba(212,165,55,0.18) 0%,
        rgba(212,165,55,0.05) 45%,
        transparent 75%
    );
    animation:ssGlow 4s ease-in-out infinite;
}

.ss-hero-image img{
    width:100%;
    max-width:430px;
    position:relative;
    z-index:2;
    animation:ssFloat 5s ease-in-out infinite;
    filter:drop-shadow(0 25px 40px rgba(184,134,11,0.25));
}

/* ================= BUTTONS ================= */

.ss-hero-buttons{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
}

/* ================= FLOATING ICONS ================= */

.ss-float-icon{
    position:absolute;
    color:#d4a537;
    opacity:0.4;
    font-size:30px;
    animation:ssFloating 6s ease-in-out infinite;
}

.ss-heart{
    top:20%;
    left:12%;
}

.ss-envelope{
    bottom:22%;
    right:12%;
}

/* ================= ANIMATIONS ================= */

@keyframes ssFloat{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-18px);
    }
    100%{
        transform:translateY(0px);
    }
}

@keyframes ssFloating{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-15px);
    }
    100%{
        transform:translateY(0px);
    }
}

@keyframes ssGlow{
    0%{
        transform:scale(1);
        opacity:0.8;
    }
    50%{
        transform:scale(1.08);
        opacity:1;
    }
    100%{
        transform:scale(1);
        opacity:0.8;
    }
}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .ss-hero-image img{
        max-width:300px;
        margin-top: -30%;
    }

    .ss-hero-image::before{
        width:360px;
        height:360px;
    }

    .ss-hero-buttons{
        flex-direction:column;
        gap:18px;
    }

    .ss-heart{
        top:14%;
        left:6%;
    }

    .ss-envelope{
        right:6%;
        bottom:18%;
    }
}
.ss-hero-text {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 3%;
}

.ss-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 600;
    color: #b8964a; /* gold tone */
    margin-bottom: 10px;
}

.ss-hero-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    letter-spacing: 2px;
    color: #777;
}

/* MOBILE DEVICES */
@media (max-width: 768px) {

    .ss-hero-text {
        margin-top: 15px;
        padding: 0 15px;
    }

    .ss-hero-text h1 {
        font-size: 32px;   /* reduced from 48px */
        line-height: 1.2;
    }

    .ss-hero-text p {
        font-size: 14px;   /* reduced from 18px */
        letter-spacing: 1.5px;
    }
}


/* EXTRA SMALL DEVICES (phones like 360px) */
@media (max-width: 480px) {

    .ss-hero-text h1 {
        font-size: 26px;
    }

    .ss-hero-text p {
        font-size: 13px;
        letter-spacing: 1px;
    }
}
@media (max-width:768px){

    .ss-hero-section{
        padding-top:100px; /* space for navbar */
    }

    .ss-hero-image img{
        max-width:260px;
    }

    .ss-hero-image::before{
        width:280px;
        height:280px;
    }

    .ss-hero-text h1{
        font-size:28px;
    }

    .ss-hero-text p{
        font-size:13px;
    }

    /* STACK BUTTONS */
    .ss-hero-section > div:last-child{
        flex-direction:column;
        gap:12px;
    }

    
    /* FIX FLOAT ICONS POSITION */
    .ss-heart{
        top:10%;
        left:5%;
        font-size:22px;
    }

    .ss-envelope{
        bottom:15%;
        right:5%;
        font-size:22px;
    }
}
.ss-hero-image{
    width:100%;
    display:flex;
    justify-content:center;
}

.ss-hero-image img{
    width:100%;
    max-width:320px; /* ?? strict limit */
    height:auto;
    object-fit:contain;
}

.problem-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* FIRST PARAGRAPH (quotes) */
.problem-box p:first-child {
    margin-bottom: 15px;
    line-height: 1.8;
}

/* SECOND PARAGRAPH */
.problem-box p:last-child {
    margin: 0;
    line-height: 1.6;
    color: #666;
}

/* REMOVE DEFAULT SPACING ISSUES */
.problem-box p {
    margin-top: 0;
}
.problem-box {
    text-align: center;
}

/* ALIGN ALL LINES FROM SAME POINT */
.problem-box p:first-child {
    display: inline-block;
    text-align: left;
    line-height: 2;
    font-size: 18px;
    margin-bottom: 15px;
}

/* SECOND PARAGRAPH */
.problem-box p:last-child {
    margin: 0;
    color: #666;
    font-size: 16px;
}
/* ?? MOBILE FIX */
@media (max-width: 768px) {

    .gold-btn-mobile {
        display: block;
        width: 85%;
        max-width: 260px;
        margin: 25px auto 0; /* center perfectly */
        text-align: center;
        padding: 14px 0;
        font-size: 15px;
        border-radius: 40px;
        box-shadow: 0 10px 25px rgba(184,134,11,0.35);
    }
}
@media (max-width: 768px){

    /* BUTTON WRAPPER */
    .mobile-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    /* VIEW BUTTON */
    .mobile-view-btn {
        display: block;
        width: 85%;
        max-width: 260px;
        padding: 12px 0;
        border-radius: 30px;
        background: #f2f2f2;
        text-align: center;
        font-size: 15px;
        color: #333;
        text-decoration: none;
        box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    }

    /* GOLD BUTTON */
    .mobile-gold-btn {
        display: block;
        width: 85%;
        max-width: 260px;
        padding: 12px 0;
        font-size: 15px;
        text-align: center;
        border-radius: 30px;
    }

    /* TAP EFFECT */
    .mobile-view-btn:active,
    .mobile-gold-btn:active {
        transform: scale(0.96);
    }
}

@media (max-width: 768px){

    /* BUTTON WRAPPER */
    .mobile-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    /* SMALL VIEW BUTTON */
    .mobile-view-btn {
        display: inline-block;
        width: auto;              /* ?? no full width */
        padding: 8px 20px;
        font-size: 14px;
        border-radius: 20px;
        background: #f2f2f2;
        color: #333;
        text-decoration: none;
        box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    }

    /* SMALL GOLD BUTTON */
    .mobile-gold-btn {
        display: inline-block;
        width: auto;              /* ?? no full width */
        padding: 10px 22px;
        font-size: 14px;
        border-radius: 22px;
    }

    /* TAP EFFECT */
    .mobile-view-btn:active,
    .mobile-gold-btn:active {
        transform: scale(0.95);
    }
}
.video-box{
    display:flex;
    flex-direction:column;
    gap:8px;
    align-items:center;
}

.video-link{
    background:#d4af37;
    color:#fff;
    padding:6px 10px;
    border-radius:8px;
    text-decoration:none;
    font-size:13px;
    font-weight:600;
    transition:.3s;
}

.video-link:hover{
    opacity:.9;
    transform:translateY(-1px);
}

.sg-video{
    width:120px;
    border-radius:10px;
}
/* ================= PAYMENT APPS ================= */

.upi-apps{

    margin-top:18px;

    display:flex;

    flex-direction:column;

    gap:14px;
}

/* CARD */

.upi-app-card{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px;

    border-radius:22px;

    text-decoration:none;

    transition:all .25s ease;

    border:1px solid #ececec;

    background:#fff;
}

/* HOVER */

.upi-app-card:hover{

    transform:translateY(-2px);

    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* LEFT */

.upi-left{

    display:flex;

    align-items:center;

    gap:16px;
}

/* LOGO */

.upi-logo{

    width:62px !important;

    height:62px !important;

    object-fit:contain;

    background:#fff;

    border-radius:16px;

    padding:4px;
}

/* TEXT */

.upi-left span{

    font-size:17px;

    font-weight:700;
}

/* ARROW */

.upi-app-card i{

    font-size:16px;

    color:#888;
}

/* GPAY */

.gpay{

    background:linear-gradient(135deg,#ffffff,#f5f9ff);
}

.gpay span{

    color:#1a73e8;
}

/* PHONEPE */

.phonepe{

    background:linear-gradient(135deg,#ffffff,#faf5ff);
}

.phonepe span{

    color:#5f259f;
}

/* PAYTM */

.paytm{

    background:linear-gradient(135deg,#ffffff,#f2fcff);
}

.paytm span{

    color:#00baf2;
}

/* ================= SECURE BOX ================= */

.secure-upi{

    margin-top:18px;

    background:#f2fff3;

    border:1px solid #d8f7dd;

    border-radius:18px;

    padding:16px;

    display:flex;

    align-items:flex-start;

    gap:12px;
}

.secure-upi i{

    font-size:22px;

    color:#16a34a;

    margin-top:2px;
}

.secure-upi strong{

    display:block;

    color:#159947;

    margin-bottom:4px;

    font-size:15px;
}

.secure-upi p{

    margin:0;

    color:#666;

    font-size:13px;

    line-height:1.5;
}

/* ================= EVENT DATE BOX ================= */

.event-date-box{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin-top:15px;
    flex-wrap:wrap;
}

.calendar-icon{
    font-size:20px;
    color:#d4af37;
}

.event-date-text{
    font-size:18px;
    font-weight:600;
    color:#6b4f2c;
}

.event-date-to{
    margin-left:5px;
}

/* ================= HEART DIVIDER ================= */

.heart-divider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin:20px 0;
}

.heart-divider .line{
    width:60px;
    height:1px;
    background:#e0c48c;
}

.heart-divider .heart{
    color:#d4af37;
    font-size:14px;
}

/* ================= INVITE TEXT ================= */

.event-invite-text{
    text-align:center;
    font-size:16px;
    color:#666;
    line-height:1.6;
    max-width:320px;
    margin:0 auto 25px auto;
}

/* ================= MOBILE OPTIMIZATION ================= */

@media(max-width:480px){

    .event-date-text{
        font-size:16px;
    }

    .calendar-icon{
        font-size:18px;
    }

    .heart-divider .line{
        width:40px;
    }

    .event-invite-text{
        font-size:14px;
        padding:0 10px;
    }
}
/* ================= INVITE TEXT ================= */

.invite-text{
    text-align:center;
    font-family: 'Playfair Display', serif;
    font-size:20px;
    font-style:italic;
    color:#6b4f2c;
    margin-top:10px;
    margin-bottom:10px;
    line-height:1.6;
    letter-spacing:0.5px;
}

/* MOBILE */

@media(max-width:480px){
    .invite-text{
        font-size:16px;
        padding:0 12px;
    }
}

/* ================= VERIFY BUTTON SIZE ================= */

.verify-size{
    width:110px;        /* adjust as needed */
    height:36px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:13px;
    border-radius:15px;
}
.sg-top-bar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:15px;
}

/* FILTER BUTTONS */
.sg-filters{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
}

.filter-btn{
    padding:6px 12px;
    border-radius:20px;
    background:#f3f3f3;
    color:#444;
    font-size:13px;
    text-decoration:none;
    transition:0.2s;
}

.filter-btn:hover{
    background:#d4af37;
    color:#fff;
}

.filter-btn.active{
    background:#d4af37;
    color:#fff;
    font-weight:600;
}

/* SEARCH */
.sg-search{
    display:flex;
    gap:6px;
}

.sg-search input{
    padding:6px 10px;
    border-radius:8px;
    border:1px solid #ddd;
    font-size:13px;
}

.sg-search button{
    background:#d4af37;
    border:none;
    color:#fff;
    padding:6px 12px;
    border-radius:8px;
    cursor:pointer;
}