
/* =========================
STYLE.CSS
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

/* BODY TEXT */
body {
    font-family: 'Montserrat', sans-serif;
}

section{
    padding:110px 10%;
}

.container{
    max-width:1200px;
    margin:auto;
}

h1, .logo {
    font-family: 'Great Vibes', cursive;
}

h2, h3 {
    font-family: 'Playfair Display', serif;
}

h2 {
    letter-spacing: 1px;
    font-weight: 500;
}

h1 {
    letter-spacing: 2px;
}
h2{
    text-align:center;
    font-size:4rem;
    margin-bottom:40px;
    font-weight:500;
    color:#b38b6d;
}

.section-text{
    text-align:center;
    max-width:700px;
    margin:auto;
    line-height:1.9;
}

/* =========================
NAVBAR
========================= */

.navbar{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:1000;

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

    padding:25px 8%;

    background:rgba(255,255,255,0.1);
    backdrop-filter:blur(12px);
}



.nav-links{
    display:flex;
    list-style:none;
    gap:35px;
}

.nav-links a{
    text-decoration:none;
    color:white;
    font-size:0.95rem;
    letter-spacing:1px;
    transition:0.3s;
}

.nav-links a:hover{
    opacity:0.7;
}

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

.hero{
    position:relative;
    height:100vh;

    background:
    url("assets/eyetoeye.JPG");

    background-size:cover;
    background-position:center;

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

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.35);
}

.hero-content{
    position:relative;
    z-index:2;
    color:white;
    padding:20px;
}

.welcome-text{
    letter-spacing:4px;
    margin-bottom:25px;
    text-transform:uppercase;
    font-size:0.85rem;
}

.hero-content h1{
    font-size:6rem;
    font-weight:500;
    margin-bottom:20px;
}

.hero-content h1 span{
    font-style:italic;
}

.hero-subtitle{
    font-size:1.2rem;
    margin-bottom:20px;
}

.hero-content h3{
    font-weight:400;
    margin-bottom:35px;
}

.btn{
    display:inline-block;
    padding:14px 38px;
    border-radius:40px;
    text-decoration:none;
    background:#d8b7a0;
    color:white;
    transition:0.3s;
}

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

/* =========================
STORY
========================= */

.story-content{
    max-width:800px;
    margin:auto;
    text-align:center;
}

.story-content p{
    line-height:2;
    margin-bottom:25px;
}

/* =========================
COUNTDOWN
========================= */

.countdown-section{
    background:#f5ede7;
}

.countdown{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.time-box{
    background:white;
    padding:35px;
    border-radius:25px;
    min-width:150px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.time-box span{
    display:block;
    font-size:3rem;
    color:#b38b6d;
    margin-bottom:10px;
}

/* =========================
CARDS
========================= */

.details-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.card{
    background:white;
    padding:40px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.card h3{
    margin-bottom:15px;
    font-size:2rem;
}

/* =========================
TIMELINE
========================= */

.timeline{
    display:grid;
    gap:25px;
    max-width:800px;
    margin:auto;
}

.timeline-item{
    background:white;
    padding:35px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.timeline-item h3{
    margin-bottom:10px;
    font-size:2rem;
}

.timeline-item span{
    display:inline-block;
    margin-top:10px;
    color:#b38b6d;
}

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

.theme-section{
    background:#f5ede7;
}

.theme-text{
    text-align:center;
    font-size:2rem;
    margin-bottom:20px;
    font-family:'Cormorant Garamond', serif;
}

.theme-description{
    max-width:700px;
    margin:auto;
    text-align:center;
    line-height:2;
}

/* =========================
BANKING DETAILS
========================= */

.banking-box{
    background:white;
    max-width:600px;
    margin:40px auto 0 auto;
    padding:40px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    text-align:center;
}

.banking-box h3{
    margin-bottom:25px;
    font-size:2rem;
}

.banking-box p{
    margin-bottom:15px;
    line-height:1.8;
}

#form-message{
    text-align:center;
    margin-top:20px;
    color:#b38b6d;
}


/* =========================
GALLERY
========================= */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:370px;
    object-fit:cover;
    border-radius:25px;
    transition:0.4s;
}

.gallery-grid img:hover{
    transform:scale(1.03);
}

/* =========================
FAQ
========================= */

.faq{
    background:#f5ede7;
}

.faq-item{
    background:white;
    padding:30px;
    border-radius:20px;
    margin-bottom:20px;
}

.faq-item h3{
    margin-bottom:10px;
    font-size:1.8rem;
}

/* =========================
RSVP
========================= */

.rsvp-note{
    text-align:center;
    margin-bottom:40px;
}

form{
    max-width:700px;
    margin:auto;

    display:flex;
    flex-direction:column;
    gap:20px;
}

input,
select,
textarea{
    padding:18px;
    border:none;
    border-radius:15px;
    font-family:'Montserrat', sans-serif;
    background:white;
}

textarea{
    min-height:150px;
}

button{
    border:none;
    padding:18px;
    border-radius:40px;
    background:#b38b6d;
    color:white;
    cursor:pointer;
    transition:0.3s;
}

button:hover{
    opacity:0.9;
}

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

.contact-section{
    background:#f5ede7;
}

.contact-box{
    text-align:center;
    margin-top:40px;
}

.contact-box h3{
    font-size:2rem;
    margin-bottom:15px;
}

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

footer{
    background:#b38b6d;
    color:white;
    text-align:center;
    padding:30px;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:768px){

    .hero-content h1{
    font-size: 3.5em;
    line-height:1.2;
    padding:0 10px;

    }

.nav-links{
    gap:12px;
    flex-wrap:wrap;
    justify-content:center;
}

.nav-links a{
    font-size:0.8rem;
}
}