/* ===================================== */
/* GOOGLE FONTS                         */
/* ===================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800&display=swap');


/* ===================================== */
/* RESET                                */
/* ===================================== */

*{

margin:0;

padding:0;

box-sizing:border-box;

-webkit-tap-highlight-color:transparent;

}

html{

scroll-behavior:smooth;

}

body{

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

background:

linear-gradient(

rgba(0,0,0,.72),

rgba(0,0,0,.84)

),

url("https://images.unsplash.com/photo-1519741497674-611481863552?q=80&w=2070&auto=format&fit=crop");

background-size:cover;

background-position:center;

background-attachment:fixed;

color:#fff;

overflow-x:hidden;

min-height:100vh;

position:relative;

}


/* ===================================== */
/* GOLD PARTICLES EFFECT                */
/* ===================================== */

body::before{

content:'';

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:

radial-gradient(

circle at 20% 20%,

rgba(255,215,0,.12),

transparent 22%

),

radial-gradient(

circle at 80% 40%,

rgba(255,215,0,.08),

transparent 18%

),

radial-gradient(

circle at 40% 80%,

rgba(255,215,0,.08),

transparent 20%

);

pointer-events:none;

z-index:-1;

}



/* ===================================== */
/* SCROLLBAR                            */
/* ===================================== */

body::-webkit-scrollbar{

width:8px;

}

body::-webkit-scrollbar-thumb{

background:#d4af37;

border-radius:50px;

}

body::-webkit-scrollbar-track{

background:#111;

}



/* ===================================== */
/* CONTAINER                            */
/* ===================================== */

.container{

width:100%;

max-width:1450px;

margin:auto;

padding:24px;

position:relative;

z-index:5;

}



/* ===================================== */
/* FLOATING WHATSAPP                    */
/* ===================================== */

.floating-whatsapp{

position:fixed;

right:25px;

bottom:25px;

width:70px;

height:70px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:1.9rem;

text-decoration:none;

color:white;

background:

linear-gradient(

135deg,

#25d366,

#1ebe5d

);

box-shadow:

0 15px 40px rgba(37,211,102,.35);

z-index:999;

transition:.35s;

animation:whatsappPulse 2s infinite;

}

.floating-whatsapp:hover{

transform:

translateY(-6px)

scale(1.08);

}

@keyframes whatsappPulse{

0%{

box-shadow:

0 0 0 0

rgba(37,211,102,.5);

}

70%{

box-shadow:

0 0 0 18px

rgba(37,211,102,0);

}

100%{

box-shadow:

0 0 0 0

rgba(37,211,102,0);

}

}



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

.hero{

position:relative;

min-height:100vh;

display:flex;

align-items:center;

justify-content:center;

overflow:hidden;

border-radius:40px;

padding:80px 40px;

}


.hero-overlay{

position:absolute;

inset:0;

background:

linear-gradient(

rgba(0,0,0,.25),

rgba(0,0,0,.75)

);

backdrop-filter:blur(2px);

z-index:1;

}


.hero-content{

position:relative;

z-index:5;

text-align:center;

max-width:1000px;

}



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

.top-badge{

display:inline-flex;

align-items:center;

justify-content:center;

padding:14px 28px;

border-radius:100px;

background:

rgba(255,255,255,.08);

border:

1px solid rgba(255,255,255,.15);

font-size:.95rem;

font-weight:600;

margin-bottom:32px;

backdrop-filter:blur(14px);

box-shadow:

0 10px 35px

rgba(0,0,0,.25);

}



/* ===================================== */
/* LOGO                                 */
/* ===================================== */

.hero-content h1{

font-family:'Cinzel',serif;

font-size:

clamp(

2.4rem,

11vw,

7rem

);

font-weight:900;

line-height:1.1;

margin-bottom:12px;

max-width:100%;

overflow:hidden;

background:

linear-gradient(

90deg,

#ffffff,

#ffe28a,

#ffd700,

#fff3be,

#ffffff

);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

text-shadow:

0 10px 40px

rgba(255,215,0,.15);

}


.sub-brand{

font-size:1.1rem;

letter-spacing:6px;

text-transform:uppercase;

opacity:.85;

margin-bottom:32px;

}



/* ===================================== */
/* HERO SUBTITLE                        */
/* ===================================== */

.hero-content h2{

font-family:'Cinzel',serif;

font-size:

clamp(

2rem,

5vw,

3.6rem

);

line-height:1.4;

margin-bottom:28px;

font-weight:800;

}



.hero-content p{

font-size:1.15rem;

line-height:2.1;

max-width:800px;

margin:auto;

opacity:.94;

}



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

.hero-buttons{

display:flex;

justify-content:center;

gap:22px;

flex-wrap:wrap;

margin-top:45px;

}



.primary-btn{

border:none;

outline:none;

cursor:pointer;

padding:

22px

42px;

border-radius:100px;

font-size:1rem;

font-weight:700;

color:#000;

background:

linear-gradient(

135deg,

#fff2aa,

#ffd700,

#ffbf00

);

box-shadow:

0 15px 40px

rgba(255,215,0,.28);

transition:.35s;

}

.primary-btn:hover{

transform:

translateY(-7px)

scale(1.04);

}



.secondary-btn{

display:flex;

align-items:center;

justify-content:center;

padding:

22px

42px;

border-radius:100px;

text-decoration:none;

color:white;

font-weight:700;

background:

rgba(255,255,255,.08);

border:

1px solid rgba(255,255,255,.15);

backdrop-filter:blur(15px);

transition:.35s;

}

.secondary-btn:hover{

transform:

translateY(-7px);

background:

rgba(255,255,255,.12);

}



/* ===================================== */
/* PHONE NUMBER                         */
/* ===================================== */

.hero-phone{

margin-top:35px;

font-size:1.25rem;

font-weight:700;

color:#ffd700;

letter-spacing:2px;

}


/* ===================================== */
/* FORM SECTION                         */
/* ===================================== */

.form-section{

margin-top:80px;

padding:40px 0;

text-align:center;

}

.form-section h2{

font-family:'Cinzel',serif;

font-size:

clamp(

2rem,

5vw,

3.3rem

);

font-weight:800;

margin-bottom:18px;

}

.section-sub{

font-size:1.08rem;

line-height:2;

opacity:.9;

max-width:760px;

margin:auto;

margin-bottom:50px;

}



/* ===================================== */
/* FORM CARD                            */
/* ===================================== */

.form-card{

width:100%;

max-width:1150px;

margin:auto;

padding:45px;

border-radius:38px;

background:

rgba(20,20,20,.78);

border:

1px solid rgba(255,255,255,.12);

backdrop-filter:

blur(24px);

box-shadow:

0 20px 60px

rgba(0,0,0,.45);

position:relative;

overflow:hidden;

}

.form-card::before{

content:'';

position:absolute;

width:450px;

height:450px;

border-radius:50%;

background:

rgba(255,215,0,.06);

top:-200px;

right:-150px;

filter:blur(70px);

pointer-events:none;

}



/* ===================================== */
/* FORM GRID                            */
/* ===================================== */

.form-grid{

display:grid;

grid-template-columns:

repeat(

2,

minmax(0,1fr)

);

gap:28px;

position:relative;

z-index:5;

}

.full-width{

grid-column:1/-1;

}



/* ===================================== */
/* INPUT GROUP                          */
/* ===================================== */

.input-group{

display:flex;

flex-direction:column;

text-align:left;

}

.input-group label{

font-size:1rem;

font-weight:600;

margin-bottom:14px;

opacity:.96;

}



.input-group input,

.input-group select,

.input-group textarea{

width:100%;

padding:

20px

22px;

border-radius:22px;

border:

1px solid rgba(255,255,255,.08);

background:

rgba(255,255,255,.05);

color:#fff;

font-size:1rem;

font-family:

'Poppins',

sans-serif;

outline:none;

transition:.35s;

backdrop-filter:

blur(10px);

}



.input-group input::placeholder,

.input-group textarea::placeholder{

color:

rgba(

255,

255,

255,

.55

);

}



.input-group select{

appearance:none;

cursor:pointer;

}



.input-group input:focus,

.input-group select:focus,

.input-group textarea:focus{

border:

1px solid

rgba(

255,

215,

0,

.45

);

box-shadow:

0 0 0 4px

rgba(

255,

215,

0,

.08

),

0 12px 35px

rgba(

255,

215,

0,

.12

);

transform:

translateY(-2px);

}



.input-group input[type=file]{

padding:18px;

cursor:pointer;

}



.input-group input[type=file]::file-selector-button{

padding:

12px

18px;

border:none;

border-radius:14px;

background:

linear-gradient(

135deg,

#ffe28a,

#ffd700

);

font-weight:700;

cursor:pointer;

margin-right:15px;

}



/* ===================================== */
/* THEME SECTION                        */
/* ===================================== */

.themes-section{

margin-top:90px;

text-align:center;

}

.themes-section h2{

font-family:'Cinzel',serif;

font-size:

clamp(

2rem,

5vw,

3.2rem

);

font-weight:800;

margin-bottom:18px;

}



/* ===================================== */
/* THEMES GRID                          */
/* ===================================== */

.themes-grid{

display:grid;

grid-template-columns:

repeat(

auto-fit,

minmax(

240px,

1fr

)

);

gap:28px;

margin-top:55px;

}



/* ===================================== */
/* THEME CARD                           */
/* ===================================== */

.theme-card{

position:relative;

padding:38px;

border-radius:34px;

cursor:pointer;

overflow:hidden;

background:

rgba(

255,

255,

255,

.05

);

border:

1px solid

rgba(

255,

255,

255,

.10

);

backdrop-filter:

blur(18px);

transition:.4s;

}



.theme-card::before{

content:'';

position:absolute;

inset:0;

background:

linear-gradient(

135deg,

rgba(

255,

215,

0,

.10

),

transparent

);

opacity:0;

transition:.4s;

}



.theme-card:hover::before{

opacity:1;

}



.theme-card:hover{

transform:

translateY(-12px)

scale(1.03);

border:

1px solid

rgba(

255,

215,

0,

.35

);

box-shadow:

0 25px 55px

rgba(

255,

215,

0,

.10

);

}



.theme-card.active{

border:

2px solid

#ffd700;

box-shadow:

0 20px 50px

rgba(

255,

215,

0,

.22

);

}



.theme-icon{

font-size:3rem;

margin-bottom:22px;

}



.theme-card h3{

font-size:1.4rem;

font-weight:700;

margin-bottom:15px;

}



.theme-card p{

font-size:1rem;

opacity:.85;

line-height:1.9;

}



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

.generate-wrap{

margin-top:60px;

text-align:center;

}



.generate-btn{

border:none;

outline:none;

cursor:pointer;

padding:

24px

58px;

border-radius:100px;

font-size:1.12rem;

font-weight:800;

color:#000;

background:

linear-gradient(

135deg,

#fff2aa,

#ffd700,

#ffb700

);

box-shadow:

0 18px 45px

rgba(

255,

215,

0,

.30

);

transition:.35s;

}



.generate-btn:hover{

transform:

translateY(-7px)

scale(1.04);

}



.generate-wrap p{

margin-top:22px;

opacity:.85;

font-size:1rem;

}



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

@media(max-width:768px){

.form-card{

padding:28px;

border-radius:28px;

}

.form-grid{

grid-template-columns:1fr;

gap:20px;

}

.full-width{

grid-column:auto;

}

.input-group input,

.input-group select,

.input-group textarea{

padding:18px;

font-size:16px;

}

.themes-grid{

grid-template-columns:1fr;

gap:18px;

}

.theme-card{

padding:28px;

border-radius:26px;

}

.generate-btn{

width:100%;

padding:22px;

}

}

/* ===================================== */
/* INVITATION PREVIEW                    */
/* ===================================== */

.preview-section{

margin-top:100px;

text-align:center;

}

.preview-section h2{

font-family:'Cinzel',serif;

font-size:clamp(2rem,5vw,3.3rem);

font-weight:800;

margin-bottom:50px;

}


.hero{

padding:70px 20px;

}

.hero-content{

width:100%;

}

.hero-content h1{

font-size:2.7rem;

line-height:1.05;

}

.invitation-card{

width:100%;

max-width:700px;

margin:auto;

position:relative;

overflow:hidden;

border-radius:42px;

padding:70px 40px;

background:

linear-gradient(

135deg,

rgba(40,25,0,.92),

rgba(20,20,20,.96)

),

url("https://images.unsplash.com/photo-1519741497674-611481863552?q=80&w=2070&auto=format&fit=crop");

background-size:cover;

background-position:center;

border:

1px solid rgba(255,255,255,.12);

box-shadow:

0 30px 80px rgba(0,0,0,.45),

0 0 50px rgba(255,215,0,.12);

}



.card-overlay{

position:absolute;

inset:0;

background:

linear-gradient(

rgba(0,0,0,.20),

rgba(0,0,0,.55)

);

}



.card-inner{

position:relative;

z-index:5;

}



.card-top{

font-size:1rem;

letter-spacing:4px;

text-transform:uppercase;

color:#ffd700;

margin-bottom:40px;

font-weight:700;

}



#previewBride,

#previewGroom{

font-family:'Cinzel',serif;

font-size:

clamp(

2.5rem,

7vw,

4.5rem

);

font-weight:900;

background:

linear-gradient(

90deg,

#ffffff,

#ffe28a,

#ffd700,

#ffffff

);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}



.heart{

font-size:2rem;

margin:25px 0;

}



.event-name{

margin-top:40px;

font-size:1.5rem;

font-weight:700;

}



.event-date,

.event-time,

.event-venue{

margin-top:18px;

font-size:1.15rem;

opacity:.95;

}



.invitation-message{

margin-top:55px;

font-family:'Cinzel',serif;

font-size:1.7rem;

font-weight:700;

color:#ffe28a;

}



.card-footer{

margin-top:60px;

line-height:2;

font-size:.95rem;

opacity:.9;

}



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

.share-buttons{

display:flex;

justify-content:center;

gap:18px;

flex-wrap:wrap;

margin-top:40px;

}



.share-btn{

padding:

18px

28px;

border:none;

outline:none;

cursor:pointer;

border-radius:100px;

font-size:1rem;

font-weight:700;

background:

rgba(255,255,255,.08);

border:

1px solid rgba(255,255,255,.12);

color:#fff;

backdrop-filter:blur(12px);

transition:.35s;

}



.share-btn:hover{

transform:

translateY(-6px)

scale(1.04);

border:

1px solid rgba(255,215,0,.35);

}



/* ===================================== */
/* DIVINE BLESSINGS                      */
/* ===================================== */

.blessing-section{

margin-top:110px;

text-align:center;

}



.blessing-section h2{

font-family:'Cinzel',serif;

font-size:clamp(2rem,5vw,3rem);

margin-bottom:45px;

}



.blessing-card{

max-width:850px;

margin:auto;

padding:55px;

border-radius:38px;

background:

linear-gradient(

135deg,

rgba(212,175,55,.16),

rgba(255,255,255,.05)

);

border:

1px solid rgba(255,255,255,.12);

backdrop-filter:blur(20px);

box-shadow:

0 25px 60px rgba(0,0,0,.35);

}



.blessing-card p{

font-size:1.15rem;

line-height:2.4;

margin-bottom:28px;

opacity:.95;

}



.blessing-footer{

margin-top:35px;

font-size:1rem;

font-weight:700;

color:#ffd700;

}



/* ===================================== */
/* VIDHWAAN FAMILY                       */
/* ===================================== */

.ecosystem-section{

margin-top:110px;

text-align:center;

}



.ecosystem-section h2{

font-family:'Cinzel',serif;

font-size:clamp(2rem,5vw,3rem);

margin-bottom:20px;

}



.ecosystem-grid{

display:grid;

grid-template-columns:

repeat(

auto-fit,

minmax(

240px,

1fr

)

);

gap:28px;

margin-top:55px;

}



.eco-card{

display:block;

text-decoration:none;

color:white;

padding:40px;

border-radius:34px;

background:

rgba(255,255,255,.05);

border:

1px solid rgba(255,255,255,.10);

backdrop-filter:blur(18px);

transition:.35s;

}



.eco-card:hover{

transform:

translateY(-12px)

scale(1.03);

border:

1px solid rgba(255,215,0,.35);

box-shadow:

0 20px 50px rgba(255,215,0,.10);

}



.eco-icon{

font-size:3rem;

margin-bottom:22px;

}



.eco-card h3{

font-size:1.4rem;

margin-bottom:15px;

}



.eco-card p{

line-height:1.9;

opacity:.88;

}



/* ===================================== */
/* CONTACT                               */
/* ===================================== */

.contact-section{

margin-top:110px;

text-align:center;

}



.contact-section h2{

font-family:'Cinzel',serif;

font-size:clamp(2rem,5vw,3rem);

margin-bottom:35px;

}



.whatsapp-big{

display:inline-block;

text-decoration:none;

padding:

35px

55px;

border-radius:35px;

background:

linear-gradient(

135deg,

#25d366,

#1ebe5d

);

color:white;

font-size:1.4rem;

font-weight:700;

line-height:1.8;

box-shadow:

0 20px 50px rgba(37,211,102,.30);

transition:.35s;

}



.whatsapp-big:hover{

transform:

translateY(-8px)

scale(1.03);

}



.contact-site{

margin-top:30px;

font-size:1.15rem;

color:#ffd700;

}



/* ===================================== */
/* FOOTER                                */
/* ===================================== */

footer{

margin-top:120px;

padding:

70px

20px;

text-align:center;

border-top:

1px solid rgba(255,255,255,.08);

}



footer h2{

font-family:'Cinzel',serif;

font-size:

clamp(

2rem,

5vw,

3.5rem

);

line-height:1.5;

margin-bottom:35px;

background:

linear-gradient(

90deg,

#ffffff,

#ffe28a,

#ffd700,

#ffffff

);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}



.footer-brand{

font-size:1.3rem;

font-weight:700;

line-height:2;

margin-bottom:25px;

}



.footer-links{

line-height:2.3;

opacity:.9;

}



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

@media(max-width:768px){

.invitation-card{

padding:45px 25px;

border-radius:28px;

}



#previewBride,

#previewGroom{

font-size:2.3rem;

}



.invitation-message{

font-size:1.35rem;

}



.share-buttons{

flex-direction:column;

}



.share-btn{

width:100%;

}



.blessing-card{

padding:30px;

border-radius:28px;

}



.ecosystem-grid{

grid-template-columns:1fr;

}



.eco-card{

padding:28px;

}



.whatsapp-big{

width:100%;

padding:28px;

font-size:1.2rem;

}



footer{

padding:50px 15px;

}

}


@media(max-width:768px){

.invitation-card{

padding:45px 25px;

border-radius:28px;

}

@media(max-width:768px){

.hero{

padding:70px 20px;

}

.hero-content{

width:100%;

}

.hero-content h1{

font-size:2.7rem;

line-height:1.05;

}

.invitation-card{

padding:45px 25px;

border-radius:28px;

}
