* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: #333;
    background: #faf7f9;
}

/* HERO */

.hero {
    background: linear-gradient(135deg, #f7c1d9, #f6efd2);
    text-align: center;
    padding: 80px 20px 60px;
}

.hero-inner h1 {
    margin: 0 0 10px;
    font-size: 2.8rem;
    letter-spacing: 0.15em;
}

.hero-inner p {
    margin: 0 0 20px;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 999px;
    border: none;
    text-decoration: none;
    background: #e84a7a;
    color: #fff;
    font-weight: 600;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
    background: #d63b69;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-1px);
}

/* NAV */

.top-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px 20px;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 10;
}

.top-nav a {
    text-decoration: none;
    color: #555;
    font-size: 0.95rem;
}

.top-nav a:hover {
    color: #e84a7a;
}

/* SECTIONS */

.section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 20px;
}

.section-alt {
    background: #fff;
}

.section h2 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

/* CARDS */

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

/* GALERIE */

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.gallery img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 10px;
}

/* VIDEO */

.video-row {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

/* FOOTER */

.footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: #777;
}