/* Custom styles for Gayu's Kitchen */

/* Base styles */
body {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Spice colors */
.bg-spice-100 { background-color: #FEEBC8; }
.bg-spice-500 { background-color: #ED8936; }
.bg-spice-600:hover { background-color: #D69E2E; }
.bg-spice-700 { background-color: #DD6B20; }
.bg-spice-900 { background-color: #C05621; }
.text-spice-700 { color: #DD6B20; }
.border-spice-500 { border-color: #ED8936; }

/* Additional color classes */
.text-spice-red { color: #C05621; }
.bg-spice-red { background-color: #C05621; }
.text-curry-yellow { color: #D69E2E; }
.bg-curry-yellow { background-color: #D69E2E; }
.text-mint-green { color: #38A169; }
.bg-mint-green { background-color: #38A169; }

/* Hero section background */
.hero-pattern {
    background-image: linear-gradient(135deg, #ED8936 0%, #DD6B20 100%);
}

/* Header styles */
header {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Navigation styles */
nav a {
    transition: color 0.3s ease;
}

/* Mobile menu styles */
#mobile-menu {
    transition: all 0.3s ease-in-out;
}

/* Section styles */
section {
    padding: 4rem 0;
}

/* About section */
#about {
    background-color: #FEEBC8;
}

/* Menu items */
.menu-item {
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
}

/* Catering section */
#catering {
    background-color: #FEEBC8;
}

/* Contact section styles */
#contact a {
    transition: background-color 0.3s ease;
}

/* Footer styles */
footer {
    background-color: #2C3E50;
}

footer a {
    transition: color 0.3s ease;
}

/* Back to top button */
#back-to-top {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#back-to-top.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Custom animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fadeIn {
    animation: fadeIn 0.5s ease-in-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Logo styles */
.logo {
    max-width: 150px;
    height: auto;
}

/* Custom button styles */
.btn-primary {
    background-color: #DD6B20;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #C05621;
}

/* Custom font for headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

/* Image styles */
.img-rounded {
    border-radius: 0.5rem;
}

.img-hover {
    transition: transform 0.3s ease-in-out;
}

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

/* Custom list styles */
.custom-list {
    list-style-type: none;
    padding-left: 0;
}

.custom-list li {
    padding-left: 1.5rem;
    position: relative;
}

.custom-list li::before {
    content: '•';
    color: #DD6B20;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Custom border styles */
.border-spice {
    border-color: #DD6B20;
}

/* Custom shadow */
.shadow-spice {
    box-shadow: 0 4px 6px -1px rgba(221, 107, 32, 0.1), 0 2px 4px -1px rgba(221, 107, 32, 0.06);
}
