:root {
    --snow-white: #ffffff;
    --ice-blue: #f0f8ff;
    --azure-blue: #007bff;
    --bright-green: #00A651;
    --swiss-red: #ff0000;
    --neon-turquoise: #40E0D0;
}

body {
    background-color: var(--ice-blue);
    font-family: 'Nunito', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat Alternates', 'Raleway', sans-serif;
}

.navbar {
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--azure-blue) !important;
    letter-spacing: 1.5px;
    font-size: 1.5rem;
}

.search-input {
    min-width: 300px;
    border-radius: 20px 0 0 20px;
    border: 1px solid #e0e0e0;
}

.search-input:focus {
    box-shadow: none;
    border-color: var(--azure-blue);
}

.search-input + .btn {
    border-radius: 0 20px 20px 0;
    border: 1px solid #e0e0e0;
    border-left: none;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
    padding: 3px 0;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--bright-green);
}

/* Contact Page Styles */
.contact-info {
    color: #333;
    font-size: 1.1rem;
}

.contact-info a {
    color: var(--azure-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--bright-green);
}

.location-section .card {
    transition: transform 0.3s ease;
    background: linear-gradient(to bottom right, var(--snow-white), var(--ice-blue));
}

.location-section .card:hover {
    transform: translateY(-5px);
}

.location-section .card-title {
    color: var(--azure-blue);
}

.accordion-button:not(.collapsed) {
    background-color: var(--ice-blue);
    color: var(--azure-blue);
}

.form-control:focus {
    border-color: var(--azure-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.nav-link {
    color: #333 !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--bright-green) !important;
}

.btn-primary {
    background-color: var(--bright-green);
    border-color: var(--bright-green);
}

.btn-primary:hover {
    background-color: #008c44;
    border-color: #008c44;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.breadcrumb {
    background-color: transparent;
    padding: 0.75rem 0;
}

.breadcrumb-item a {
    color: var(--azure-blue);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--bright-green);
}

/* Modern Carousel Styles */
.hero-section {
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

#heroCarousel {
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.carousel-image-wrapper {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.carousel-image-wrapper img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    transition: transform 0.6s ease;
}

.carousel-item:hover .carousel-image-wrapper img {
    transform: scale(1.05);
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.carousel-caption-modern {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    padding: 2rem;
}

.carousel-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.carousel-caption-modern h1,
.carousel-caption-modern h2 {
    color: var(--azure-blue);
    text-shadow: none;
    font-size: 3rem;
}

.carousel-caption-modern p {
    color: #555;
    text-shadow: none;
    font-size: 1.25rem;
}

.carousel-indicators {
    bottom: 30px;
    z-index: 3;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: var(--bright-green);
    border-color: var(--bright-green);
    width: 30px;
    border-radius: 6px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 3;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background-color: var(--bright-green);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--azure-blue);
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: white;
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

.animate-slide-up {
    animation: slideUp 1s ease-out 0.3s both;
}

.animate-scale-in {
    animation: scaleIn 0.8s ease-out 0.6s both;
}

.btn-modern {
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 166, 81, 0.3);
    transition: all 0.3s ease;
}

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 166, 81, 0.4);
}

/* Menu Styles */
.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-nav {
    gap: 0.5rem;
}

.menu-item {
    padding: 0.75rem 1.5rem !important;
    min-width: 120px;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    font-weight: 500;
}

.menu-item:hover {
    background-color: var(--ice-blue);
    color: var(--bright-green) !important;
    transform: translateY(-2px);
}

/* Cart Badge Styles */
.snipcart-checkout {
    position: relative;
    border: none !important;
    text-decoration: none !important;
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--bright-green);
    color: white;
    border-radius: 50%;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translate(25%, -25%);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.cart-badge:empty {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .carousel-image-wrapper {
        height: 400px;
    }
    
    .carousel-content {
        padding: 2rem;
    }
    
    .carousel-caption-modern h1,
    .carousel-caption-modern h2 {
        font-size: 2rem;
    }
    
    .carousel-caption-modern p {
        font-size: 1rem;
    }
    
    .menu-item {
        min-width: auto;
        width: 100%;
        text-align: left;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
}

@media (max-width: 576px) {
    .carousel-image-wrapper {
        height: 300px;
    }
    
    .carousel-content {
        padding: 1.5rem;
    }
    
    .carousel-caption-modern h1,
    .carousel-caption-modern h2 {
        font-size: 1.5rem;
    }
}
