:root {
    --sand-beige: #F5E6D3;
    --burgundy: #800020;
    --dark: #2C2C2C;
    --light-gray: #F8F9FA;
}

body {
    background-color: var(--sand-beige);
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--dark);
}

header {
    z-index: 1030;
    background-color: #fff !important;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--burgundy);
    letter-spacing: 0.5px;
}

.navbar-brand:hover {
    color: var(--burgundy);
}

.navbar-nav {
    min-height: 35px;
}

.nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-link {
    font-weight: 500;
    color: var(--dark);
    padding: 0.4rem 0.8rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: var(--burgundy);
    background-color: rgba(128, 0, 32, 0.05);
}

.search-form .form-control {
    border-radius: 20px 0 0 20px;
    border: 1px solid #ddd;
}

.search-form .btn {
    border-radius: 0 20px 20px 0;
    border: 1px solid #ddd;
    border-left: none;
}

.btn-outline-burgundy {
    color: var(--burgundy);
    border-color: #ddd;
}

.btn-outline-burgundy:hover {
    color: white;
    background-color: var(--burgundy);
    border-color: var(--burgundy);
}

.footer-section {
    background-color: var(--light-gray);
    border-top: 1px solid #dee2e6;
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    color: var(--burgundy);
    font-weight: 600;
}

.footer-text {
    color: #666;
    line-height: 1.6;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--burgundy);
    text-decoration: none;
}

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

.breadcrumb a {
    color: var(--burgundy);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.btn-outline-dark {
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background-color: var(--burgundy);
    border-color: var(--burgundy);
}

.contact-hero-section {
    background: linear-gradient(to right, var(--sand-beige), #fff);
    padding: 4rem 0;
}

.text-burgundy {
    color: var(--burgundy);
}

.contact-info i {
    width: 40px;
    text-align: center;
}

.contact-form .form-control:focus {
    border-color: var(--burgundy);
    box-shadow: 0 0 0 0.2rem rgba(128, 0, 32, 0.25);
}

.business-hours-section .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.accordion-button:not(.collapsed) {
    background-color: var(--sand-beige);
    color: var(--burgundy);
}

.accordion-button:focus {
    border-color: var(--burgundy);
    box-shadow: 0 0 0 0.2rem rgba(128, 0, 32, 0.25);
}

.hero-section {
    margin-top: 0;
}

.carousel {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.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-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 2rem;
}

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

.carousel-content h1,
.carousel-content h2 {
    color: var(--burgundy);
    text-shadow: none;
}

.carousel-content p {
    color: var(--dark);
    text-shadow: none;
}

.carousel-indicators {
    margin-bottom: 2rem;
}

.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(--burgundy);
    border-color: var(--burgundy);
    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;
}

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

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

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background-color: var(--burgundy);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--burgundy);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    background-size: 60%;
}

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

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

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

.animate-fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.carousel-item {
    transition: opacity 0.6s ease-in-out;
}

.snipcart-checkout {
    position: relative;
}

.snipcart-items-count {
    margin-left: 0.5rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .carousel-image-wrapper {
        height: 350px;
    }
    
    .carousel-content {
        padding: 2rem 1.5rem;
    }
    
    .carousel-content h1,
    .carousel-content h2 {
        font-size: 2rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
}

.card-img-top {
    height: 300px;
    object-fit: cover;
    width: 100%;
}

.category-card .card-img-top {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.about-section img,
.history-section img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.team-section .card-img-top {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

@media (max-width: 768px) {
    .card-img-top {
        height: 250px;
    }
    
    .category-card .card-img-top {
        height: 200px;
    }
    
    .team-section .card-img-top {
        height: 200px;
    }
}
