/* --- 1. BRAND VARIABLES & FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&display=swap');

:root {
    --primary-blue: #0ea5e9; /* sky-500 */
    --secondary-teal: #14b8a6; /* teal-500 */
    --accent-yellow: #facc15; /* yellow-400 */
    --text-dark: #1f2937;
    --footer-dark: #111827; /* Matches Tailwind bg-gray-900 */
}

/* --- 2. CUSTOM UTILITIES --- */
.font-groovy-text {
    font-family: 'Fredoka', cursive;
}

.hero-text-shadow {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* --- 3. ANIMATED ELEMENTS --- */
.slant-button {
    transition: all 0.3s ease-in-out;
    transform: skewX(-15deg);
}

.slant-button-text {
    transform: skewX(15deg);
    display: block;
}

.slant-button:hover {
    transform: skewX(-5deg) scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.typing-cursor {
    border-right: 2px solid var(--accent-yellow);
    animation: blink 0.7s step-start infinite;
    display: inline-block;
}
@keyframes blink {
    50% { border-color: transparent; }
}

/* --- 4. NAVIGATION EFFECTS --- */
.nav-link-item {
    position: relative;
    padding-bottom: 5px;
}
.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: var(--primary-blue);
    transition: width 0.3s ease-out, left 0.3s ease-out;
    border-radius: 999px;
}
.nav-link-item:hover::after {
    width: 100%;
    left: 0;
}
.nav-link-item.active::after {
    width: 100%;
    left: 0;
    background-color: var(--secondary-teal);
}

/* --- 5. MOBILE MENU --- */
#mobile-menu {
    transition: transform 0.3s ease-out;
    transform: translateX(100%);
}
#mobile-menu.open {
    transform: translateX(0);
}

/* --- 6. SHAPE DIVIDERS --- */

/* Hero Divider (Bottom) */
.custom-shape-divider-bottom-1761498444 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-bottom: -1px;
}

.custom-shape-divider-bottom-1761498444 svg {
    position: relative;
    display: block;
    width: calc(150% + 1.3px); 
    height: 100px;
    transform: rotateY(180deg) rotateX(180deg); 
}

@media (max-width: 767px) { 
    .custom-shape-divider-bottom-1761498444 svg {
        width: calc(225% + 1.3px); 
    }
}

.custom-shape-divider-bottom-1761498444 .shape-fill {
    fill: #14B8A6;
}

/* --- 7. MISC --- */
#map-overlay {
    opacity: 1; 
    transition: opacity 0.3s ease-in-out;
    pointer-events: auto; 
}
@media (min-width: 1024px) {
    #map-container:hover #map-overlay { opacity: 0; pointer-events: none; }
    #map-overlay p { display: none; }
}
@media (max-width: 1023px) {
    #map-overlay.active { opacity: 0; pointer-events: none; }
}
.jelly-icon { color: var(--primary-blue); }