/* Custom Styles for Tysons Hometown Market */

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

/* Custom animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-in {
    animation: slideIn 0.8s ease-out forwards;
}

/* Gold accent hover effects */
.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}

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

::-webkit-scrollbar-track {
    background: #0f172a;
}

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

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

/* Input focus styles */
input:focus,
textarea:focus {
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

/* Button hover glow */
button:hover {
    box-shadow: 0 0 20px rgba(20, 184, 166, 0.3);
}

/* Navigation active state */
nav a.active {
    color: #fbbf24;
}

/* Image hover overlay */
.group:hover .group-hover\:shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(20, 184, 166, 0.25);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .font-['Cormorant_Garamond'] {
        font-size: 2.5rem;
    }
    
    .font-['Cormorant_Garamond'] {
        font-size: 2rem;
    }
}

/* Print styles */
@media print {
    nav,
    button,
    input,
    textarea {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}
