* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #eee2df;
    color: #333;
}


.birthday-hero {
    position: relative;
    height: 70vh;
    background: url("images/birthday_event.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(179, 106, 94, 0.55);
}

.hero-content {
    position: relative;
    max-width: 600px;
    color: #fff;
    z-index: 1;
}

.hero-content .tag {
    background: rgba(255,255,255,0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-content h1 span {
    color: #ffe6e3;
}

.hero-content p {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.btn.primary {
    background: #c89f9c;
    color: #fff;
}

.btn.primary:hover {
    background: #b36a5e;
}

.btn.outline {
    border: 1px solid #fff;
    color: #fff;
}

.btn.outline:hover {
    background: #fff;
    color: #b36a5e;
}


.birthday-services {
    padding: 80px 8%;
    background: #eee2df;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header span {
    color: #b36a5e;
    font-size: 14px;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 32px;
    margin-top: 10px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.service-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    border: 2px solid #bc8c80;

}

.service-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.service-card h3 {
    padding: 18px 20px 5px;
    color: #b36a5e;
}

.service-card p {
    padding: 0 20px 20px;
    font-size: 14px;
    color: #555;
}


@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 34px;
    }

    .birthday-hero {
        height: 80vh;
        padding: 0 6%;
    }
}
