:root {
    --primary-color: #ffb5a7; /* Pastel peach/pink */
    --secondary-color: #b56576; /* Darker mauve/rose for contrast */
    --accent-color: #e5989b; /* Soft rose */
    --bg-color: #fff0f3; /* Very light pastel pink background */
    --text-color: #4a454d;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Header */
.hero {
    background-color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(0,0,0,0.05);
}

.logo-container {
    max-width: 150px;
}

.logo {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap; /* for mobile */
}

.nav a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--primary-color);
}

/* Banner */
.banner {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(255, 181, 167, 0.2) 0%, rgba(229, 152, 155, 0.2) 100%);
}

.banner h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.banner p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* About & Workshops */
.about {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

.about h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.about p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.workshops {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 4rem 2rem;
    background-color: #fff;
    flex-wrap: wrap;
}

.workshop-card {
    background: var(--bg-color);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 400px;
    text-align: center;
    transition: transform 0.3s ease;
}

.workshop-card:hover {
    transform: translateY(-10px);
}

.workshop-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.workshop-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: #6d6875; /* Soft dark grey/mauve */
    color: #fff;
    text-align: center;
    padding: 4rem 2rem 2rem;
}

.contact-info h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.copyright {
    margin-top: 3rem;
    font-size: 0.9rem;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        gap: 1rem;
    }
    .banner h1 {
        font-size: 2.5rem;
    }
    .workshops {
        flex-direction: column;
        align-items: center;
    }
}

/* Animations */
[data-animate] {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

[data-animate="fade-in"] {
    transform: scale(0.95);
}

[data-animate="slide-up"] {
    transform: translateY(30px);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
