/* ============================================
   HERO SECTION - STATIC IMAGE BACKGROUND
   ============================================ */

/* Hero background image (replaces video) */
.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Image overlay (replaces video overlay) */
.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 105, 180, 0.75) 0%,
        rgba(255, 192, 203, 0.65) 50%,
        rgba(237, 100, 166, 0.55) 100%
    );
    z-index: 1;
}

/* ============================================
   NEW MAP SECTION - "VISIT US"
   ============================================ */

.map-showcase-section {
    background: linear-gradient(135deg, #ffeef8 0%, #fff0f5 50%, #ffe4f0 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.map-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M30 15 L30 45 M15 30 L45 30" stroke="%23FF69B4" stroke-width="0.5" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.map-showcase-section .container {
    position: relative;
    z-index: 2;
}

.map-showcase-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    background: linear-gradient(135deg, #FF69B4 0%, #FF8FC7 25%, #4ECDC4 50%, #7ED9D3 75%, #FF69B4 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

.map-showcase-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.map-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(255, 105, 180, 0.3),
        0 0 40px rgba(78, 205, 196, 0.2);
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
}

.map-showcase-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(
        135deg,
        #FF69B4,
        #4ECDC4,
        #FF69B4
    );
    background-size: 200% 200%;
    border-radius: 22px;
    z-index: -1;
    animation: gradient-shift 3s ease infinite;
}

.map-showcase-container iframe {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    display: block;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .map-showcase-section {
        padding: 3rem 0;
    }
    
    .map-showcase-section h2 {
        font-size: 2rem;
    }
    
    .map-showcase-intro {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .map-showcase-container {
        margin: 0 1rem;
    }
    
    .map-showcase-container iframe {
        height: 350px;
    }
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}
