/* Custom styles for Steve's Restaurant */

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

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

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #0d9488;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0f766e;
}

/* Geometric decorations */
.geo-shape {
    position: absolute;
    pointer-events: none;
}

.geo-circle {
    border-radius: 50%;
}

/* Animation classes */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(30px);
    }
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Button styles */
.btn-primary {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(13, 148, 136, 0.3);
}

.btn-secondary {
    border: 2px solid #0d9488;
    color: #0d9488;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #0d9488;
    color: white;
}

/* Card hover effects */
.card-hover {
    transition: all 0.4s ease;
}

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

/* Image zoom effect */
.img-zoom {
    overflow: hidden;
}

.img-zoom img {
    transition: transform 0.5s ease;
}

.img-zoom:hover img {
    transform: scale(1.05);
}

/* Accent line */
.accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0d9488, #2dd4bf);
}

/* Navigation */
.nav-scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-scrolled .nav-link {
    color: #1e293b !important;
}

.nav-scrolled .nav-logo {
    color: #0d9488 !important;
}

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

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

/* Hero section */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
    }
}

/* Geometric pattern background */
.geo-pattern {
    background-image: 
        linear-gradient(45deg, rgba(13, 148, 136, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(13, 148, 136, 0.05) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(13, 148, 136, 0.05) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(13, 148, 136, 0.05) 75%);
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
}

/* Focus styles for accessibility */
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-split {
        min-height: auto;
    }
    
    .hero-split > div:first-child {
        padding: 120px 20px 60px;
    }
    
    h1 {
        font-size: 2.5rem !important;
    }
    
    h2 {
        font-size: 2rem !important;
    }
}

/* Print styles */
@media print {
    .fixed,
    .mobile-menu {
        display: none !important;
    }
    
    .hero-split {
        min-height: auto;
    }
}
