/* Custom styles for improved header and footer */
body {
    font-family: 'Source Sans Pro', sans-serif;
}

h1, h2, h3, h4, h5, .navbar-brand {
    font-family: 'Playfair Display', serif;
}

.navbar {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.98) !important;
}

.navbar-brand {
    font-size: 1.8rem;
    letter-spacing: 1px;
}

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

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

.nav-link {
    font-weight: 500;
    padding: 0.75rem 1rem !important;
    position: relative;
    transition: color 0.3s ease;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--accent-green);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-green);
}

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

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

.btn-link {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: var(--accent-green);
}

/* Cart button styles */
.snipcart-checkout {
    background: var(--accent-green);
    color: white !important;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.snipcart-checkout:hover {
    background: #28a745;
    color: white !important;
    transform: translateY(-1px);
}

.snipcart-items-count {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Menu alignment improvements */
.navbar-nav {
    min-height: 50px;
}

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

/* Fixed header positioning */
.navbar.fixed-top {
    top: 0;
    z-index: 1030;
}
