/* Custom styles for Takeria 718 */

/* Ensure hero is visible immediately */
#hero {
    min-height: 100vh;
    min-height: 100dvh;
}

/* Smooth scroll offset for fixed nav */
section[id] {
    scroll-margin-top: 80px;
}

/* Selection color */
::selection {
    background: rgba(45, 184, 150, 0.3);
    color: #F0FFF8;
}

/* Focus styles */
a:focus-visible,
button:focus-visible {
    outline: 2px solid #2DB896;
    outline-offset: 4px;
    border-radius: 4px;
}

/* Image loading placeholder */
img {
    background-color: #0A1628;
}

/* Subtle gradient for text accents */
.text-gradient-mint {
    background: linear-gradient(135deg, #2DB896 0%, #8AE0CC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Geometric shape animations on scroll (progressive enhancement) */
@media (prefers-reduced-motion: no-preference) {
    .geo-circle,
    .geo-diamond {
        transition: transform 0.6s ease;
    }
}

/* Mobile menu line animation */
#menuBtn.active .menu-line-1 {
    transform: rotate(45deg) translate(4px, 4px);
}
#menuBtn.active .menu-line-2 {
    opacity: 0;
}
#menuBtn.active .menu-line-3 {
    transform: rotate(-45deg) translate(4px, -4px);
    width: 1.5rem;
}
