:root {
    --primary-color: #2ecc71;
    --dark-color: #2c3e50;
    --light-bg: #f9f9f9;
}

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('{% static "images/hero-bg.jpg" %}') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.logo {
    width: 120px; /* Small, elegant logo size */
    margin-bottom: 20px;
}

.hero h1 { font-size: 3.5rem; margin-bottom: 10px; }
.hero p { font-size: 1.2rem; margin-bottom: 30px; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin: 0 10px;
    transition: 0.3s;
}

.btn-primary { background: var(--primary-color); color: white; }
.btn-secondary { border: 2px solid white; color: white; }
.btn:hover { opacity: 0.8; transform: translateY(-3px); }

/* Language Grid */
.languages { padding: 80px 0; text-align: center; background: var(--light-bg); }
.lang-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }

.lang-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.flag { font-size: 3rem; display: block; margin-bottom: 10px; }

.mission {
    padding: 100px 0;
    background-color: white;
}

.mission-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap; /* Ensures it stacks on mobile */
}

.mission-text {
    flex: 1;
    min-width: 300px;
}

.mission-text h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.mission-text p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.mission-image {
    flex: 1;
    min-width: 300px;
}

.image-placeholder {
    background: #e0e0e0;
    height: 350px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #666;
    font-weight: bold;
    font-size: 1.2rem;
    border: 2px dashed #ccc;
}

.waitlist {
    padding: 80px 0;
    background-color: var(--dark-color);
    color: white;
    text-align: center;
}

.waitlist h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.waitlist p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.waitlist-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.waitlist-form input[type="email"] {
    flex: 1;
    padding: 15px;
    border-radius: 5px;
    border: none;
    font-size: 1rem;
}

/* Responsive para móviles */
@media (max-width: 600px) {
    .waitlist-form {
        flex-direction: column;
    }
}

footer { text-align: center; padding: 40px; background: #eee; }