* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: #eee2df;
    color: #333;
}



.wedding-hero {
    height: 70vh;
    background: url("images/wedding_event.png") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 8%;

}


.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(179,106,94,0.40),
        rgba(179,106,94,0.40)
    );
}


.hero-content {
    position: relative;
    z-index: 2;
    color: #eee2df;
    max-width: 650px;
}

.hero-tag {
    display: inline-block;
    background: rgba(238,226,223,0.25);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 18px;
}

.hero-content h1 {
    font-size: 54px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #fff;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}


.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.btn-primary {
    background: #c89f9c;
    padding: 14px 34px;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #b36a5e;
}

.btn-outline {
    border: 2px solid #eee2df;
    padding: 14px 34px;
    border-radius: 30px;
    color: #eee2df;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #eee2df;
    color: #b36a5e;
}


.hero-highlights {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-highlights span {
    background: rgba(255,255,255,0.9);
    color: #b36a5e;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}


@media (max-width: 768px) {
    .wedding-hero {
        padding: 0 6%;
        justify-content: center;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-highlights {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }
}


.wedding-services {
    padding: 90px 0;
    background: #eee2df;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}


.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    font-size: 14px;
    letter-spacing: 2px;
    color: #b36a5e;
}

.section-title h2 {
    font-size: 36px;
    color: #333;
    margin-top: 10px;
}


.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.10);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border: 2px solid #bc8c80;

}
.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}


.card-body {
    padding: 25px;
}

.card-body h3 {
    font-size: 20px;
    color: #000;
    margin-bottom: 10px;
    position: relative;
}

.card-body h3::after {
    content: '';
    width: 40px;
    height: 3px;
    background: #c89f9c;
    display: block;
    margin-top: 8px;
}

.card-body p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-top: 12px;
}


@media (max-width: 768px) {
    .section-title h2 {
        font-size: 28px;
    }

    .service-card img {
        height: 180px;
    }
}
