:root {
    --lavande: #E0BBE4;
    --rose: #FFD1DC;
    --violet: #957dad;
    --text: #4a4a4a;
    --bg-light: #fdfbfb;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; color: var(--text); background: #fafafa; overflow-x: hidden; scroll-behavior: smooth; }

/* Navigation */
.main-header {
    position: fixed; top: 0; width: 100%; padding: 15px 5%;
    background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(10px);
    z-index: 1000; border-bottom: 1px solid rgba(224, 187, 228, 0.3);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
.logo { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--violet); font-weight: bold; letter-spacing: 2px; }
.nav-links { display: flex; list-style: none; gap: 25px; }
.nav-links a { text-decoration: none; color: var(--text); font-size: 0.9rem; transition: 0.3s; }
.nav-links a:hover { color: var(--violet); }
.nav-btn { padding: 10px 22px; background: linear-gradient(135deg, var(--lavande), var(--rose)); color: white; text-decoration: none; border-radius: 50px; font-weight: 600; font-size: 0.85rem; }

/* Hero */
.hero {
    height: 100vh; background: url('img2.jpg') center/cover fixed;
    display: flex; align-items: center; justify-content: center; text-align: center; color: white; position: relative;
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(149, 125, 173, 0.4); }
.hero-content { position: relative; z-index: 2; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: 3rem; margin-bottom: 1rem; text-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.btn { padding: 15px 35px; background: white; color: var(--violet); text-decoration: none; border-radius: 50px; font-weight: 600; transition: 0.4s; display: inline-block; }
.btn:hover { transform: scale(1.1); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

/* Piliers */
section { padding: 100px 5%; text-align: center; }
.section-title { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--violet); margin-bottom: 40px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; }
.feature-card { background: white; padding: 40px 25px; border-radius: 25px; box-shadow: 0 5px 20px rgba(0,0,0,0.02); transition: 0.4s; }
.feature-card:hover { transform: translateY(-10px); border: 1px solid var(--rose); }
.feature-icon { font-size: 2.5rem; margin-bottom: 15px; display: block; }

/* About */
.about-flex { display: flex; align-items: center; justify-content: center; gap: 50px; flex-wrap: wrap; }
.profile-circle { width: 220px; height: 220px; border-radius: 50%; padding: 10px; background: linear-gradient(var(--lavande), var(--rose)); transition: 0.6s; }
.profile-circle:hover { transform: rotate(5deg) scale(1.05); }
.profile-img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 5px solid white; }
.about-content { text-align: left; max-width: 500px; }
.modern-quote { border-left: 4px solid var(--lavande); padding-left: 20px; font-style: italic; color: var(--violet); margin-top: 20px; }

/* Galerie */
.image-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.image-item img { width: 100%; height: 350px; object-fit: cover; border-radius: 20px; transition: 0.4s; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.image-item img:hover { transform: scale(1.03); }

/* Ramadan Minimal */
.ramadan-minimal { background-color: var(--bg-light); }
.ramadan-flex { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-top: 30px; }
.ramadan-item { flex: 1; min-width: 250px; padding: 25px; border-top: 2px solid var(--lavande); transition: 0.3s; }
.ramadan-item:hover { background: white; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }

/* Contact */
.contact-form { max-width: 500px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
input, textarea { padding: 15px; border: 1px solid #eee; border-radius: 15px; font-family: inherit; }
.whatsapp-btn { background: #25D366; color: white; border: none; padding: 18px; border-radius: 50px; font-weight: bold; cursor: pointer; transition: 0.3s; }
.whatsapp-btn:hover { background: #128C7E; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(37,211,102,0.2); }

.modern-footer {
    background-color: #fff;
    padding: 80px 5% 30px;
    border-top: 1px solid rgba(224, 187, 228, 0.3);
    position: relative;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    text-align: left;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--violet);
    font-weight: bold;
    letter-spacing: 3px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text);
    opacity: 0.7;
    margin-top: 10px;
    letter-spacing: 1px;
}

.footer-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--lavande), var(--rose));
    margin-top: 15px;
}

.modern-footer h4 {
    font-family: 'Playfair Display', serif;
    color: var(--violet);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-link {
    text-decoration: none;
    color: var(--text);
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--violet);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-bubble {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--violet);
    font-weight: 600;
    font-size: 0.8rem;
    border: 1px solid var(--lavande);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-bubble:hover {
    background: linear-gradient(135deg, var(--lavande), var(--rose));
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(149, 125, 173, 0.3);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid #f8f8f8;
    text-align: center;
    font-size: 0.8rem;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-line { margin: 15px auto 0; }
    .social-icons { justify-content: center; }
}