:root {
    --reunion-red: #E30A17;
    --reunion-blue: #002395;
    --reunion-yellow: #FCD116;
    --ocean-blue: #00A3E0;
    --volcano-orange: #FF6B35;
    --tropical-green: #00B388;
    --dark: #1a1a1a;
    --grey: #6B7280;
    --light-grey: #F9FAFB;
    --white: #ffffff;
    --sand: #F5DEB3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 163, 224, 0.9) 0%, rgba(0, 179, 136, 0.9) 100%),
                url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="3" fill="rgba(252,209,22,0.15)"/><circle cx="25" cy="75" r="2" fill="rgba(227,10,23,0.12)"/></svg>');
    background-size: cover, 60px 60px;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '🌺';
    position: absolute;
    font-size: 400px;
    opacity: 0.06;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-25deg);
    animation: tropical 18s ease-in-out infinite;
}

@keyframes tropical {
    0%, 100% { transform: translate(-50%, -50%) rotate(-25deg) scale(1); }
    50% { transform: translate(-50%, -50%) rotate(-20deg) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 3rem 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
}

.hero .subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
}

.hero-cta-box {
    background: var(--white);
    color: var(--dark);
    padding: 2.5rem 3rem;
    border-radius: 20px;
    max-width: 650px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-cta-box h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.8rem;
    color: var(--dark);
}

.hero-cta-box .subtitle-box {
    font-size: 1rem;
    color: var(--grey);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--tropical-green) 100%);
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 163, 224, 0.4);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 163, 224, 0.5);
}

.trust-line {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--grey);
}

.trust-line strong {
    color: var(--dark);
}

.rating {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-left: 0.5rem;
}

.rating::before {
    content: '⭐';
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Common */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--grey);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* DJ Cards Section */
.dj-showcase {
    background: var(--white);
}

.dj-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.dj-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dj-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-color: var(--ocean-blue);
}

.dj-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #E5E7EB 0%, #D1D5DB 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
}

.dj-info {
    padding: 1.8rem;
}

.dj-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.dj-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.specialist-badge {
    background: var(--ocean-blue);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.verified {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--tropical-green);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.verified::before {
    content: '✓';
    width: 20px;
    height: 20px;
    background: var(--tropical-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: var(--reunion-yellow);
    font-size: 1.1rem;
}

.rating-score {
    font-weight: 600;
    color: var(--dark);
}

.specialty {
    display: inline-block;
    background: var(--light-grey);
    color: var(--grey);
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Why Compare Section */
.why-compare {
    background: var(--light-grey);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-card p {
    color: var(--grey);
    line-height: 1.7;
}

/* Musical Identity Section */
.musical-identity {
    background: linear-gradient(135deg, var(--reunion-blue) 0%, var(--ocean-blue) 100%);
    color: var(--white);
}

.musical-identity .section-title,
.musical-identity .section-subtitle {
    color: var(--white);
}

.music-materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.content-box {
    background: rgba(255,255,255,0.95);
    padding: 2.5rem;
    border-radius: 20px;
    color: var(--dark);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.content-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--reunion-red);
}

.content-box p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--dark);
}

.content-box ul {
    list-style: none;
    margin-top: 1.5rem;
}

.content-box ul li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--dark);
}

.content-box ul li::before {
    content: '♪';
    position: absolute;
    left: 0;
    color: var(--reunion-red);
    font-size: 1.3rem;
    font-weight: bold;
}

.content-box strong {
    color: var(--reunion-blue);
}

.highlight-text {
    background: var(--reunion-yellow);
    color: var(--dark);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

/* Regions Section */
.regions {
    background: var(--sand);
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.region-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 3px solid transparent;
}

.region-card:hover {
    transform: scale(1.05);
    border-color: var(--ocean-blue);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.flag-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.region-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--reunion-blue);
}

.region-card p {
    color: var(--grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

.music-styles {
    margin-top: 0.8rem;
    font-size: 0.85rem;
    font-style: italic;
    color: var(--reunion-red);
    font-weight: 600;
}

/* Artists Section */
.artists {
    background: var(--white);
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.artist-card {
    background: linear-gradient(135deg, #E6F7FF 0%, #D6F0FF 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border-left: 4px solid var(--ocean-blue);
    transition: all 0.3s ease;
}

.artist-card:hover {
    transform: translateX(5px);
    border-left-color: var(--reunion-red);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.artist-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
}

.artist-genre {
    font-size: 0.85rem;
    color: var(--grey);
    font-style: italic;
}

/* FAQ Section */
.faq {
    background: var(--light-grey);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.faq-item:hover {
    border-color: var(--ocean-blue);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
}

.faq-question::after {
    content: '+';
    font-size: 2rem;
    color: var(--ocean-blue);
    transition: transform 0.3s ease;
    font-weight: 300;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--grey);
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 600px;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--volcano-orange) 0%, var(--reunion-red) 100%);
    color: var(--white);
    text-align: center;
    padding: 6rem 2rem;
}

.final-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-button-white {
    background: var(--white);
    color: var(--reunion-red);
}

.cta-button-white:hover {
    background: var(--reunion-yellow);
    color: var(--dark);
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--ocean-blue);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--ocean-blue);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-cta-box {
        padding: 2rem 1.5rem;
    }

    .music-materials-grid {
        grid-template-columns: 1fr;
    }

    .content-box {
        padding: 2rem;
    }

    section {
        padding: 3rem 0;
    }
}
