/* Custom Styles for OverFlo Potato */

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

/* Custom button styles */
.btn-coral {
    background: linear-gradient(135deg, #ff6b47 0%, #f04a22 100%);
    color: white;
    transition: all 0.3s ease;
}

.btn-coral:hover {
    background: linear-gradient(135deg, #ff9170 0%, #ff6b47 100%);
    transform: translateY(-2px);
}

/* Navigation styles */
nav {
    transition: all 0.5s ease;
}

nav.scrolled {
    background: rgba(15, 18, 24, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

nav.scrolled .nav-text {
    color: white !important;
}

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

nav.scrolled .nav-link:hover {
    color: #ff9170 !important;
}

nav.scrolled .mobile-link {
    color: white !important;
}

/* Menu tabs */
.menu-tab {
    background: transparent;
    border: 2px solid #4b5563;
    color: #a1a5aa;
}

.menu-tab.active {
    background: #ff6b47;
    border-color: #ff6b47;
    color: white;
}

.menu-tab:hover:not(.active) {
    border-color: #ff6b47;
    color: #ff9170;
}

/* Scroll reveal animations */
.scroll-reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Mobile menu animations */
#mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

/* Image hover effects */
img {
    transition: transform 0.7s ease;
}

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

::-webkit-scrollbar-track {
    background: #1a1f29;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #ff9170;
}

/* Form focus styles */
input:focus,
textarea:focus,
select:focus {
    box-shadow: 0 0 0 3px rgba(255, 107, 71, 0.2);
}

/* Responsive typography */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem !important;
    }
    
    h2 {
        font-size: 2rem !important;
    }
}
