/* Fixed Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Add padding to body to account for fixed navbar */
body {
    padding-top: 80px;
}

.navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #EACB65 !important;
    letter-spacing: 1px;
}

/* Menu items alignment */
.navbar-nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.nav-item {
    flex: 1;
    text-align: center;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    color: #4A4A4A;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 1rem 0.5rem !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 60px;
}

.nav-link:hover {
    color: #EACB65;
    transform: translateY(-2px);
}

/* Search and cart container */
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-collapse {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Search form */
.d-flex {
    margin: 0 2rem;
}

.search-input {
    border: 1px solid #E0E0E0;
    border-radius: 20px 0 0 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

.btn-search {
    background-color: #EACB65;
    border: 1px solid #EACB65;
    border-radius: 0 20px 20px 0;
    color: white;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.btn-search:hover {
    background-color: #d4b654;
    border-color: #d4b654;
    color: white;
}

.breadcrumb {
    background: rgba(234, 203, 101, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
}

.cart-buttons {
    display: flex;
    align-items: center;
}

.snipcart-checkout {
    background: none;
    border: none;
    color: #4A4A4A;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.snipcart-checkout:hover {
    color: #EACB65;
}

.snipcart-items-count {
    color: #EACB65;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Remove total price display */
.snipcart-total-price {
    display: none;
}
.footer-custom {
    border-top: 1px solid rgba(234, 203, 101, 0.2);
    font-family: 'Montserrat', sans-serif;
}

.footer-custom h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #4A4A4A;
    margin-bottom: 1.5rem;
}

.footer-custom p, 
.footer-custom address {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #666;
}

.footer-custom .list-unstyled li {
    margin-bottom: 0.8rem;
}

.footer-custom .list-unstyled a {
    color: #666;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-custom .list-unstyled a:hover {
    color: #EACB65;
    text-decoration: none;
    padding-left: 5px;
}

.cookie-consent {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.cookie-consent .btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.cookie-consent .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
/* Contact Page Styles */
.contact-form-wrapper {
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #EACB65;
    box-shadow: 0 0 0 0.2rem rgba(234, 203, 101, 0.25);
}

.contact-info a {
    color: #4A4A4A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #EACB65;
}

.opening-hours {
    font-family: 'Montserrat', sans-serif;
    color: #4A4A4A;
}

.accordion-button {
    font-family: 'Montserrat', sans-serif;
    color: #4A4A4A;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
}

.accordion-button:not(.collapsed) {
    color: #4A4A4A;
    background: linear-gradient(145deg, #EACB65 0%, #d4b654 100%);
}

.accordion-button:focus {
    border-color: #EACB65;
    box-shadow: 0 0 0 0.2rem rgba(234, 203, 101, 0.25);
}

.contact-form .btn-warning {
    background: linear-gradient(145deg, #EACB65 0%, #d4b654 100%);
    border: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

.contact-form .btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(234, 203, 101, 0.3);
}

/* Carousel text background */
.carousel-caption {
    background: rgba(255, 255, 255, 0.9);
    color: #4A4A4A !important;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.carousel-caption h1,
.carousel-caption h2 {
    color: #4A4A4A !important;
    text-shadow: none;
    margin-bottom: 1rem;
}

.carousel-caption p {
    color: #666 !important;
    text-shadow: none;
    margin-bottom: 1.5rem;
}

.carousel-caption .btn {
    background: linear-gradient(145deg, #EACB65 0%, #d4b654 100%);
    border: none;
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(234, 203, 101, 0.3);
}

.carousel-caption .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(234, 203, 101, 0.4);
    color: white;
}

/* Dark text variant for light backgrounds */
.carousel-caption.text-dark {
    background: rgba(255, 255, 255, 0.95);
}

/* Light text variant for dark backgrounds */
.carousel-caption:not(.text-dark) {
    background: rgba(0, 0, 0, 0.7);
    color: white !important;
}

.carousel-caption:not(.text-dark) h1,
.carousel-caption:not(.text-dark) h2 {
    color: white !important;
}

.carousel-caption:not(.text-dark) p {
    color: #f0f0f0 !important;
}

