body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #b4769c7c;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

.header {
    width: 100%;
    height: 500px;
    background-image: url('/sunails.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #b4769c;
    animation: fadeInDown 1s ease-out;
    box-shadow: 
        inset 0 0 0 3px rgba(255,255,255,0.3),
        0 10px 30px rgba(0, 0, 0, 0.1);
}

.services {
    background: #F9F9F9;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.service {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service svg {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

.service h3 {
    margin: 0.5rem 0;
    font-size: 1.4rem;
    color: #FF8FA3;
}

.gallery-section {
    background: white;
    padding: 4rem 2rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.gallery-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.gallery-header h2 {
    font-size: 2.2rem;
    color: #FF8FA3;
    margin-bottom: 1rem;
}

.gallery-header p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.fb-container {
    background-color: #333;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.fb-page {
    width: 100% !important;
}

.fb-page span,
.fb-page iframe {
    width: 100% !important;
}


@keyframes fadeInDown {
    0% { opacity: 0; transform: translateY(-30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 749px) {
    .header {
        height: 66.67vw;
        background-position: center;
    }
}

@media (min-width: 750px) {
    .header {
        background-position: center 40%;
    }
}

@media (min-width: 1441px) {
    .header {
        background-size: 70%;
    }
}