* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #fff7f5;
    overflow-x: hidden;
}

.navbar {
    width: 100%;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 32px;
    font-weight: bold;
    color: white;
    font-family: 'Cinzel', serif;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 17px;
    transition: .4s;
}

.nav-links a:hover {
    color: #f43f5e;
}

.menu-btn {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

.hero {
    height: 70vh;
    background:
        linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)),
        url('./images/banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    position: relative;
}
.hero1 {
    height: 100vh;
    background:
        linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)),
        url('./images/banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    position: relative;
}


.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-content h1 {
    font-size: 90px;
    font-family: 'Cinzel', serif;
    margin: 20px 0;
}

.hero-content span {
    color: #fb7185;
}

.hero-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 16px 40px;
    background: #f43f5e;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: .4s;
}

.hero-btn:hover {
    background: #e11d48;
}

.countdown-section {
    padding: 120px 20px;
    text-align: center;
}

.countdown-section h2 {
    font-size: 50px;
    margin-bottom: 60px;
    font-family: 'Cinzel', serif;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.box {
    background: white;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    min-width: 140px;
}

.box h1 {
    font-size: 55px;
    color: #f43f5e;
}

/* .page-banner {
    height: 100vh;
    background:
        linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)),
        url('./images/banner.jpg');
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-banner h1 {
    font-size: 70px;
    color: white;
    font-family: 'Cinzel', serif;
} */

.about-section,
.contact-section,
.rsvp-section {
    padding: 120px 8%;
}

.about-card {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
    background: white;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.about-card img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 30px;
}

.gallery-section {
    padding: 120px 8%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-section img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 30px;
    transition: 1s;
}

.gallery-section img:hover {
    transform: scale(1.05);
}

.rsvp-form {
    max-width: 700px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rsvp-form input,
.rsvp-form select,
.rsvp-form textarea {
    padding: 18px;
    border: none;
    border-radius: 20px;
    outline: none;
}

.rsvp-form button {
    padding: 18px;
    background: #f43f5e;
    border: none;
    color: white;
    font-size: 18px;
    border-radius: 50px;
    cursor: pointer;
}

/* .contact-card {
    background: white;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
} */
 /* Contact Section Container */
.contact-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 80px 10%;
    /* Light cream to match wedding vibe */
    text-align: center;
}

/* Individual Cards */
.contact-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid #e0d5c1; /* Soft gold border */
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-card h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #b08d57; /* Gold/Bronze color */
    margin-bottom: 15px;
    text-transform: uppercase;
}

.contact-card p {
    font-family: 'Poppins', sans-serif;
    color: #555;
    line-height: 1.6;
}

footer {
    background: black;
    color: white;
    text-align: center;
    padding: 40px;
}

@media(max-width:768px) {

    .hero-content h1 {
        font-size: 55px;
    }

    .page-banner h1 {
        font-size: 50px;
    }

    .about-card {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        display: none;
    }

    .menu-btn {
        display: block;
    }

}

/* =========================
   SERVICES PAGE
========================= */

.services-section {
    padding: 120px 8%;
}

.section-heading {
    text-align: center;
    margin-bottom: 70px;
}

.section-heading span {
    color: #f43f5e;
    letter-spacing: 3px;
    font-size: 15px;
    font-weight: 600;
}

.section-heading h2 {
    font-size: 60px;
    font-family: 'Cinzel', serif;
    margin-top: 15px;
    color: #222;
}

.section-heading p {
    max-width: 700px;
    margin: 20px auto 0;
    color: #666;
    line-height: 1.9;
}

/* GRID */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* CARD */

.service-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-content {
    padding: 35px;
}

.service-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: #ffe4ea;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    margin-bottom: 25px;
}

.service-content h3 {
    font-size: 34px;
    font-family: 'Cinzel', serif;
    margin-bottom: 18px;
    color: #222;
}

.service-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 25px;
}

/* LIST */

.service-list {
    list-style: none;
    margin-bottom: 30px;
}

.service-list li {
    margin-bottom: 12px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list li::before {
    content: "✦";
    color: #f43f5e;
}

/* BUTTON */

.service-btn {
    display: inline-block;
    padding: 14px 35px;
    background: #f43f5e;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: .4s;
}

.service-btn:hover {
    background: #e11d48;
}

/* WHY SECTION */

.why-section {
    padding: 120px 8%;
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.why-card {
    background: #fff;
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .4s;
}

.why-card:hover {
    transform: translateY(-10px);
}

.why-icon {
    width: 90px;
    height: 90px;
    background: #ffe4ea;
    color: #f43f5e;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    margin: auto auto 25px;
}

.why-card h4 {
    font-size: 30px;
    font-family: 'Cinzel', serif;
    margin-bottom: 15px;
}

.why-card p {
    color: #666;
    line-height: 1.8;
}


/* RESPONSIVE */

@media(max-width:1100px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:768px) {

    .section-heading h2 {
        font-size: 42px;
    }

    .services-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 42px;
    }

}

@media(max-width:500px) {

    .service-content h3 {
        font-size: 28px;
    }

    .section-heading h2 {
        font-size: 34px;
    }

}
.Details {
    font-family: 'Poppins', sans-serif; /* Thoda modern font */
    margin-top: 30px;
    color: #fb7185;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

/* Choti si elegant line niche */
.Details::after {
    content: '';
    display: block;
    justify-content: center;
    width: 300px;
    height: 3px;
    background: #fb7185;
    margin: 8px auto 0;
    border-radius: 2px;
}