/* =====================
   RESET & BASE
   ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #fff;
    min-height: 100vh;
    line-height: 1.6;
}

/* =====================
   HEADER
   ===================== */
header {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffd700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    font-size: 1.5rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
}

nav a:hover {
    color: #ffd700;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

/* =====================
   HERO
   ===================== */
.hero {
    text-align: center;
    padding: 80px 20px 60px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ffd700, #fff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto 30px;
}

.bismillah {
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 20px;
    font-family: 'Traditional Arabic', serif;
}

/* =====================
   SECTION VOCAUX
   ===================== */
.vocaux-section {
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #ffd700;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #ffd700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.vocaux-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* =====================
   CARTE VOCAL
   ===================== */
.vocal-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.vocal-card:hover {
    transform: translateY(-8px);
    border-color: #ffd700;
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.15);
}

.vocal-card h3 {
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.vocal-card .hadith-ref {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 15px;
    font-style: italic;
}

.vocal-card p {
    color: #ddd;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* =====================
   PLAYER AUDIO
   ===================== */
.audio-player {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 18px;
    border-radius: 50px;
    margin-top: 15px;
}

.play-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ffd700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #0f2027;
    transition: all 0.3s;
    flex-shrink: 0;
}

.play-btn:hover {
    background: #fff;
    transform: scale(1.1);
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
}

.progress {
    height: 100%;
    background: #ffd700;
    width: 0%;
    transition: width 0.1s;
}

.time {
    font-size: 0.85rem;
    color: #aaa;
    min-width: 40px;
}

/* =====================
   FOOTER
   ===================== */
footer {
    text-align: center;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.3);
    margin-top: 60px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

footer p {
    color: #aaa;
    font-size: 0.9rem;
}

footer .dua {
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 1rem;
}

/* =====================
   À PROPOS
   ===================== */
.apropos-section {
    padding: 60px 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.apropos-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    margin-top: 20px;
}

.apropos-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700, #b8860b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.25);
}

.apropos-texte h3 {
    color: #ffd700;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.apropos-texte p {
    color: #ddd;
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.7;
}

.apropos-texte strong {
    color: #ffd700;
    font-weight: 600;
}

.apropos-dua {
    margin-top: 25px;
    padding: 20px;
    background: rgba(255, 215, 0, 0.08);
    border-left: 3px solid #ffd700;
    border-radius: 8px;
    font-style: italic;
    color: #ffd700 !important;
    font-size: 0.95rem;
}

/* Responsive pour la section À propos */
@media (max-width: 768px) {
    .apropos-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px;
    }

    .apropos-dua {
        text-align: left;
    }
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    nav ul {
        gap: 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .vocaux-section {
        padding: 40px 20px;
    }
}

