/* Custom styles complementing Tailwind CSS */

:root {
    --color-charcoal-900: #1a1a1a;
    --color-charcoal-800: #2d2d2d;
    --color-charcoal-700: #3d3d3d;
    --color-coral-400: #ff7e67;
    --color-coral-500: #ff6b52;
    --color-coral-600: #ff553d;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-charcoal-900);
}

::-webkit-scrollbar-thumb {
    background: var(--color-coral-500);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-coral-400);
}

/* Base styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-charcoal-900);
    color: white;
    overflow-x: hidden;
}

/* Typography */
.font-display {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.05em;
}

.font-body {
    font-family: 'Inter', sans-serif;
}

/* Geometric shapes */
.geometric-shape {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.geometric-shape.circle {
    border-radius: 50%;
}

.geometric-shape.triangle {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.geometric-shape.hexagon {
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

/* Hero overlay */
.hero-overlay {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(45, 45, 45, 0.7) 100%);
}

/* Text stroke effect */
.text-stroke {
    -webkit-text-stroke: 2px var(--color-coral-500);
    color: transparent;
}

/* Menu card hover effect */
.menu-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 107, 82, 0.15);
}

/* CTA button */
.cta-button {
    background: linear-gradient(135deg, var(--color-coral-500) 0%, var(--color-coral-600) 100%);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 82, 0.4);
}

/* Navigation link underline effect */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-coral-400);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile menu */
.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.open {
    transform: translateX(0);
}

/* Scroll reveal animations */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--color-coral-500);
    outline-offset: 2px;
}

/* Image optimization */
img {
    max-width: 100%;
    height: auto;
}

/* Responsive utilities */
@media (max-width: 768px) {
    .font-display {
        font-size: 2.5rem;
    }
    
    .font-display.text-5xl {
        font-size: 3rem;
    }
    
    .font-display.text-6xl {
        font-size: 3.5rem;
    }
}

/* Print styles */
@media print {
    .geometric-shape,
    .mobile-menu {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}
