/* Vora El Mar - Design System */
:root {
    /* Palette */
    --primary: #002D51;    /* Azul marino */
    --secondary: #269995;  /* Turquesa mar */
    --aqua: #5FB9BD;       /* Aqua suave */
    --arena: #F9C674;      /* Arena/sol */
    --coral: #E96F62;      /* Coral suave */
    --bg: #FFF7EC;         /* Crema cálido */
    --text-dark: #001F3F;  /* Azul noche */
    --white: #FFFFFF;
    
    /* Layout */
    --container-padding: 2rem;
    --section-gap: 5rem;
    
    /* Fonts */
    --font-brand: 'Pacifico', cursive;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Nunito Sans', sans-serif;
}

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

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

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 800; /* ExtraBold for H1/H2 */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Header & Nav */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-type {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lang-switcher {
    display: flex;
    gap: 10px;
}

.lang-btn {
    background: none;
    border: 1px solid #ddd;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--light-text);
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Hero Section */
.hero {
    padding: var(--section-gap) 0;
    display: flex;
    align-items: center;
    min-height: 80vh;
    background: linear-gradient(135deg, var(--aqua) 0%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-family: var(--font-brand);
    font-size: 2rem;
    color: var(--coral);
    margin-bottom: 1rem;
    display: block;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--primary);
    max-width: 500px;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Categories Section */
.categories {
    padding: var(--section-gap) 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

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

.category-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border-bottom: 4px solid transparent;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--arena);
}

.category-thumb {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.category-info {
    padding: 1.5rem;
}

.category-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.category-info p {
    font-size: 0.95rem;
    color: var(--text-dark);
    opacity: 0.8;
}

/* Location */
.location {
    padding: var(--section-gap) 0;
    background: var(--aqua);
    color: var(--white);
}

.location h2, .location p {
    color: var(--white);
}

.map-container {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    height: 60px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 3rem 0;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-description {
        margin: 0 auto 2rem auto;
    }
}
