/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== HERO SECTION WITH PARALLAX ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
}

.layer-bg {
    background-image: url('images/santo1.jpg');
    z-index: 1;
}

.layer-mist {
    background: linear-gradient(to bottom, rgba(10,10,10,0) 0%, rgba(10,10,10,0.3) 50%, rgba(10,10,10,0.8) 100%);
    z-index: 2;
}

.layer-water {
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    padding: 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 900;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
    animation: fadeInUp 1.5s ease-out;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.9;
    animation: fadeInUp 1.5s ease-out 0.3s backwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.7;
}

.arrow-down {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    margin: 0 auto;
}

/* ===== LOCATION SECTIONS ===== */
.location-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 20px;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.parallax-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.4);
}

.location-section.dark .parallax-bg::after {
    background: rgba(10, 10, 10, 0.5);
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.content-wrapper {
    opacity: 0;
    transform: translateY(50px);
    transition: all 5s ease-out;
}

.content-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 3rem;
}

/* ===== GLASSMORPHISM CARDS ===== */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.card-content .description {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ===== TECHNICAL SPECS ===== */
.specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-item {
    text-align: center;
}

.spec-value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.spec-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.7;
}

.location-info {
    font-size: 0.95rem;
    opacity: 0.7;
    letter-spacing: 0.1em;
    margin-top: 2rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 768px) {
    .hero {
        height: 100vh;
    }
    
    .location-section {
        padding: 60px 20px;
    }
    
    .glass-card {
        padding: 2rem;
    }
    
    .specs {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.5rem;
    }
    
    .parallax-bg {
        background-attachment: scroll;
    }
}

@media screen and (max-width: 480px) {
    .glass-card {
        padding: 1.5rem;
    }
    
    .specs {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ===== THEMED SECTIONS ===== */

/* Sunset Theme - Margarita Island */
.sunset-theme .parallax-bg::after {
    background: linear-gradient(135deg, rgba(255, 94, 77, 0.4) 0%, rgba(2, 128, 144, 0.6) 100%);
}

.sunset-theme .section-title {
    color: #FFE5B4;
    text-shadow: 0 0 30px rgba(255, 94, 77, 0.5);
}

.sunset-theme .glass-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 229, 180, 0.2);
}

/* Lightning Theme - Catatumbo */
.lightning-theme {
    background-color: #0a0a14;
}

.lightning-theme .parallax-bg {
    background-size: cover;
    background-position: center center;
}

.lightning-theme .parallax-bg::after {
    background: rgba(5, 5, 15, 0.3);
}

.lightning-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(ellipse at 50% 30%, rgba(138, 43, 226, 0.15) 0%, transparent 50%);
    animation: lightningPulse 4s ease-in-out infinite;
}

@keyframes lightningPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.7;
    }
}

.lightning-theme .section-title {
    color: #E6E6FA;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.6), 0 0 40px rgba(138, 43, 226, 0.4);
}

.lightning-theme .glass-card {
    background: rgba(138, 43, 226, 0.08);
    border: 1px solid rgba(138, 43, 226, 0.3);
    box-shadow: 0 8px 32px 0 rgba(138, 43, 226, 0.2);
}

.lightning-theme .spec-value {
    color: #E6E6FA;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

/* Andes Theme - Cool Palette */
.andes-theme .parallax-bg::after {
    background: linear-gradient(to bottom, rgba(176, 224, 230, 0.3) 0%, rgba(10, 10, 10, 0.8) 100%);
}

.andes-theme .section-title {
    color: #F0F8FF;
    text-shadow: 0 0 20px rgba(176, 224, 230, 0.4);
}

.andes-theme .glass-card {
    background: rgba(176, 224, 230, 0.08);
    border: 1px solid rgba(176, 224, 230, 0.2);
}

/* Caribbean Theme - Vibrant Tropical */
.caribbean-theme .parallax-bg::after {
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.4) 0%, rgba(64, 224, 208, 0.5) 100%);
}

.caribbean-theme .section-title {
    color: #E0FFFF;
    text-shadow: 0 0 20px rgba(0, 206, 209, 0.5);
}

.caribbean-theme .glass-card {
    background: rgba(0, 206, 209, 0.1);
    border: 1px solid rgba(64, 224, 208, 0.3);
}

.caribbean-theme .spec-value {
    color: #E0FFFF;
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    background: rgba(10, 10, 10, 0.95);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0.5rem 0;
    letter-spacing: 0.05em;
}

.footer-text strong {
    color: #ffffff;
    font-weight: 600;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.social-link svg {
    width: 24px;
    height: 24px;
}