/* ===== CUSTOM STYLES ===== */

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

/* Selection color */
::selection {
    background: #0d9488;
    color: #ffffff;
}

/* ===== NAVBAR ===== */
.navbar {
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: #0d9488;
    color: #ffffff;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #0f766e;
    box-shadow: 0 10px 40px rgba(13, 148, 136, 0.3);
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ===== CARDS ===== */
.menu-card {
    background: #f8fafc;
    border-radius: 1rem;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.menu-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* ===== IMAGE HOVER ===== */
.img-zoom {
    transition: transform 0.5s ease;
}

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

/* ===== SECTION PADDING ===== */
.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

@media (min-width: 1024px) {
    .section-padding {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }
}

/* ===== RESPONSIVE TYPOGRAPHY ===== */
h1 {
    font-size: clamp(2rem, 5vw, 3.75rem);
    line-height: 1.1;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 3rem);
    line-height: 1.2;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

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

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

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

/* ===== MOBILE MENU ===== */
#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

#mobile-menu.open {
    max-height: 400px;
}

/* ===== NAVBAR SCROLLED STATE ===== */
.navbar-scrolled {
    background: rgba(255, 255, 255, 0.97) !important;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08) !important;
}

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

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

.navbar-scrolled .hamburger-line {
    background: #1e293b !important;
}

/* ===== FORM STYLES ===== */
input, textarea {
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    width: 100%;
    font-size: 0.875rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #0d9488;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

/* ===== SUCCESS MESSAGE ===== */
.success-message {
    display: none;
    background: #0d9488;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 500;
    margin-top: 1rem;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .img-zoom:hover {
        transform: none;
    }
}
