:root {
    --primary-color: #4a1e2b;
    --accent-color: #d4a373;
    --text-color: #333;
    --bg-color: #f5f5f5;
    --nav-bg: #3a0c1f; /* Darker wine color */
    --btn-bg: #d4a373;
    --btn-text: #fff;
    --nav-bg-rgb: 58, 12, 31; /* RGB for darker wine */
}

.dark-theme {
    --primary-color: #8b2f4a;
    --accent-color: #e6b98a;
    --text-color: #f5f5f5;
    --bg-color: #1a1a1a;
    --nav-bg: #1f0711; /* Darker wine for dark theme */
    --btn-bg: #e6b98a;
    --btn-text: #1a1a1a;
    --nav-bg-rgb: 31, 7, 17;
}

body {
    font-family: 'Playfair Display', serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: -1;
}

.background-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 0;
}

.dark-theme .background-image {
    filter: brightness(0.8);
}

.navbar {
    background-color: rgba(var(--nav-bg-rgb), 0.9);
    padding: 1rem 2rem;
    min-height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    object-fit: contain;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1rem;
    flex-grow: 1;
    justify-content: center;
    align-items: center;
}

.nav-links li {
    display: inline;
    position: relative;
}

.nav-links li:not(:last-child)::after {
    content: '|';
    color: var(--accent-color);
    margin-left: 1rem;
    font-family: 'Cinzel', serif;
}

.nav-links a {
    color: var(--accent-color);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.shop-btn {
    background-color: var(--btn-bg);
    color: var(--btn-text);
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.shop-btn:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.cart-icon {
    color: var(--accent-color);
    font-size: 1.3rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cart-icon:hover {
    color: #fff;
}

.theme-toggle-btn {
    background-color: var(--btn-bg);
    color: var(--btn-text);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.theme-toggle-btn:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 1;
}

.video-section {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.video-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.icon-placeholder {
    margin-bottom: 1rem;
}

.icon-placeholder img {
    height: 180px;
    object-fit: contain;
}

.video-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: bold;
    font-style: italic;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
}

.video-buttons {
    display: flex;
    gap: 2rem;
}

.video-btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid var(--accent-color);
    background: transparent;
    color: var(--accent-color);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    transition: box-shadow 0.3s ease;
}

.video-btn:hover {
    box-shadow: 0 0 15px var(--accent-color);
}

.taste-section {
    display: flex;
    flex-wrap: wrap;
    height: 500px;
    max-width: 1200px;
    margin: 0 auto;
}

.taste-image {
    flex: 1;
    min-width: 300px;
    background-color: #000000 !important;
}

.dark-theme .taste-image {
    background-color: var(--bg-color);
}

.taste-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.taste-content {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background-color: #000000 !important;
}

.dark-theme .taste-content {
    background-color: var(--bg-color);
}

.taste-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-align: center;
}

.taste-content p {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--text-color);
    text-align: center;
    max-width: 500px;
    margin-bottom: 1rem;
}

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.hero-content p {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.hero-cta {
    display: inline-block;
    background-color: var(--btn-bg);
    color: var(--btn-text);
    padding: 0.75rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-cta:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.hero-content h1 { animation-delay: 0.2s; }
.hero-content p { animation-delay: 0.4s; }
.hero-content .hero-cta { animation-delay: 0.6s; }

.wines-section {
    padding: 2rem 2rem;
    text-align: center;
}

.wines-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.wine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.wine-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wine-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.wine-card img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.wine-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.wine-card p {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.wine-cta {
    display: inline-block;
    background-color: var(--btn-bg);
    color: var(--btn-text);
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.wine-cta:hover {
    opacity: 0.9;
}

.sweet-red-section {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    gap: 2rem;
}

.sweet-red-images {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.sweet-red-images .wine-bottle {
    width: 30%;
    height: 560px;
    object-fit: contain;
    background-color: var(--bg-color);
}

.sweet-red-content {
    flex: 0 0 300px;
    min-width: 300px;
    background-color: #ffffff !important;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sweet-red-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--accent-color);
    text-align: left;
    margin-bottom: 0.5rem;
}

.sweet-red-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--accent-color);
    text-align: left;
    margin-bottom: 1rem;
}

.sweet-red-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.sweet-red-content li {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #000000 !important;
    margin-bottom: 0.5rem;
}

.sweet-red-content p {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #000000 !important;
    margin-bottom: 1.5rem;
}

.order-now-btn {
    display: inline-block;
    background-color: var(--btn-bg);
    color: var(--btn-text);
    padding: 0.75rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    text-transform: uppercase;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.order-now-btn:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.rose-nectar-section {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    gap: 2rem;
}

.rose-nectar-content {
    flex: 0 0 300px;
    min-width: 300px;
    background-image: url('/static/images/roseNectar.jpg');
    background-size: cover;
    background-position: center;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    order: 1;
}

.rose-nectar-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--accent-color);
    text-align: left;
    margin-bottom: 1rem;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}

.rose-nectar-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.rose-nectar-content li {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #000000 !important;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}

.rose-nectar-content p {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #000000 !important;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}

.rose-nectar-content .order-now-btn {
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}

.rose-nectar-images {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    order: 2;
}

.rose-nectar-images .wine-bottle {
    width: 28%;
    height: 560px;
    object-fit: contain;
    background-color: var(--bg-color);
}

.merlot-section {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    gap: 2rem;
}

.merlot-images {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    order: 1;
}

.merlot-images .wine-bottle {
    width: 28%;
    height: 560px;
    object-fit: contain;
    background-color: var(--bg-color);
}

.merlot-content {
    flex: 0 0 300px;
    min-width: 300px;
    background-color: var(--primary-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    order: 2;
}

.merlot-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--accent-color);
    text-align: left;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.merlot-content p {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #ffffff !important;
    margin-bottom: 1.5rem;
}

.about-teaser {
    padding: 4rem 2rem;
    background-color: var(--bg-color);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
    padding: 1rem;
}

.about-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-text p {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.about-cta {
    display: inline-block;
    background-color: var(--btn-bg);
    color: var(--btn-text);
    padding: 0.75rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.about-cta:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.about-image {
    flex: 1;
    min-width: 300px;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.footer {
    background-color: var(--nav-bg);
    color: var(--accent-color);
    padding: 1.5rem 2rem;
    text-align: center;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.social-links {
    margin-top: 1rem;
}

.social-links p {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.social-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    color: var(--accent-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--btn-bg);
}

/* Age gate styles */
.age-gate-container {
    max-width: 600px;
    margin: 100px auto;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.age-gate-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: lightSweep 4s infinite;
}

@keyframes lightSweep {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.wine-glass-icon {
    margin: 0 auto 1rem;
    width: 50px;
    height: 50px;
}

.wine-glass-fill {
    animation: fillGlass 3s ease-in-out infinite;
}

@keyframes fillGlass {
    0% {
        fill: transparent;
    }
    50% {
        fill: var(--primary-color);
    }
    100% {
        fill: transparent;
    }
}

h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

p {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.typewriter {
    overflow: hidden;
    white-space: nowrap;
    animation: typing 2s steps(30, end);
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

label {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: var(--text-color);
}

.remember-me-label {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

input[type="date"] {
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Playfair Display', serif;
}

input[type="checkbox"] {
    accent-color: var(--primary-color);
}

.error-message {
    color: #ff0000;
    font-size: 1rem;
    margin: 0.5rem 0;
    font-family: 'Cinzel', serif;
}

.enter-btn {
    background-color: var(--btn-bg);
    color: var(--btn-text);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Cinzel', serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.enter-btn.disabled {
    background-color: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

.enter-btn:not(.disabled):hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* This is css for the About page */
.about-hero {
    position: relative;
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 3.5rem;
    color: #d4af37; /* Gold color */
    text-transform: uppercase;
    margin: 20px 0 10px 0; /* Reduced bottom margin to bring subtitle closer */
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700; /* Bold font weight */
    font-size: 1.5rem;
    color: #fff;
    text-transform: uppercase; /* All caps */
    margin: 0; /* Minimal margin to keep it close to hero-title */
}

.about-text p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem; /* Smaller font size */
    max-width: 600px; /* Constrain text width */
    text-align: left; /* Align with the heading */
    line-height: 1.5; /* Improved readability */
}

.history-box {
    display: flex;
    justify-content: center;
    margin: 40px 0; /* Add some spacing above and below */
}

.box-container {
    width: 800px;
    height: 400px;
    display: flex;
}

.box-left {
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.box-right {
    width: 50%;
    height: 100%;
    background-color: #000; /* Full black background */
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-right .box-text {
    font-family: 'Open Sans', sans-serif !important; /* Increased specificity */
    font-size: 0.8rem !important; /* Smaller font size */
    color: #fff !important; /* White text */
    text-align: center;
    padding: 30px; /* Increased padding for better fit */
    line-height: 1.5; /* Improved readability */
}

.vision-section {
    display: flex;
    justify-content: center;
    margin: 40px 0; /* Same spacing as history-box */
}

.vision-container {
    width: 100%; /* Full width */
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative; /* For positioning the text box */
    display: flex;
    align-items: center; /* Center vertically */
}

.vision-text-box {
    width: 380px;
    height: 400px;
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent black for glass effect */
    backdrop-filter: blur(10px); /* Glass effect blur */
    padding: 30px;
    margin-left: 50px; /* Offset from left edge */
    color: #fff; /* White text for contrast */
}

.vision-text-box h2 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 2rem; /* Bold and prominent */
    color: #d4af37; /* Gold color */
    text-transform: uppercase;
    margin-bottom: 20px; /* Space below heading */
}

.vision-text-box ul {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem; /* Smaller font for fit */
    line-height: 1.6; /* Readable spacing */
    list-style-type: disc; /* Bullet points */
    padding-left: 20px; /* Indent bullets */
    margin-bottom: 15px; /* Space below list */
}

.vision-text-box p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem; /* Same as list for consistency */
    line-height: 1.6; /* Readable spacing */
}

.mission-section {
    display: flex;
    justify-content: center;
    margin: 40px 0; /* Same spacing as history-box and vision-section */
}

.mission-container {
    width: 850px;
    height: 580px; /* Updated height */
    display: flex;
}

.mission-left {
    width: 500px;
    height: 100%;
    background-size: cover; /* Ensure background image fits perfectly */
    background-position: center;
    position: relative; /* For positioning the img */
}

.mission-left img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure foreground image fits perfectly */
    object-position: center;
}

.mission-right {
    width: 350px; /* 850px - 500px */
    height: 100%;
    background-color: #000; /* Pure black background */
    display: flex;
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
}

.mission-text-box {
    width: 380px; /* Slightly wider than vision-text-box to fit text */
    height: 360px; /* Slightly shorter to fit with padding */
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent black for glass effect */
    backdrop-filter: blur(10px); /* Glass effect blur */
    padding: 20px; /* Smaller padding for text fit */
    color: #fff; /* White text for contrast */
}

.mission-text-box p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem; /* Small, readable font */
    line-height: 1.6; /* Readable spacing */
}

.mission-text-box h2 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 2rem; /* Match vision-text-box h2 */
    color: #d4af37; /* Gold color */
    text-transform: uppercase;
    margin-bottom: 20px; /* Space below heading */
}

.about-hero {
    position: relative;
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 3.5rem;
    color: #d4af37; /* Gold color */
    text-transform: uppercase;
    margin: 20px 0 10px 0; /* Reduced bottom margin to bring subtitle closer */
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700; /* Bold font weight */
    font-size: 1.5rem;
    color: #fff;
    text-transform: uppercase; /* All caps */
    margin: 0; /* Minimal margin to keep it close to hero-title */
}

.about-text p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem; /* Smaller font size */
    max-width: 600px; /* Constrain text width */
    text-align: left; /* Align with the heading */
    line-height: 1.5; /* Improved readability */
}

.history-box {
    display: flex;
    justify-content: center;
    margin: 40px 0; /* Add some spacing above and below */
}

.box-container {
    width: 800px;
    height: 400px;
    display: flex;
}

.box-left {
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.box-right {
    width: 50%;
    height: 100%;
    background-color: #000; /* Full black background */
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-right .box-text {
    font-family: 'Open Sans', sans-serif !important; /* Increased specificity */
    font-size: 0.8rem !important; /* Smaller font size */
    color: #fff !important; /* White text */
    text-align: center;
    padding: 30px; /* Increased padding for better fit */
    line-height: 1.5; /* Improved readability */
}

.vision-section {
    display: flex;
    justify-content: center;
    margin: 40px 0; /* Same spacing as history-box */
}

.vision-container {
    width: 100%; /* Full width */
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative; /* For positioning the text box */
    display: flex;
    align-items: center; /* Center vertically */
}

.vision-text-box {
    width: 380px;
    height: 400px;
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent black for glass effect */
    backdrop-filter: blur(10px); /* Glass effect blur */
    padding: 30px;
    margin-left: 50px; /* Offset from left edge */
    color: #fff; /* White text for contrast */
}

.vision-text-box h2 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 2rem; /* Bold and prominent */
    color: #d4af37; /* Gold color */
    text-transform: uppercase;
    margin-bottom: 20px; /* Space below heading */
}

.vision-text-box ul {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem; /* Smaller font for fit */
    line-height: 1.6; /* Readable spacing */
    list-style-type: disc; /* Bullet points */
    padding-left: 20px; /* Indent bullets */
    margin-bottom: 15px; /* Space below list */
}

.vision-text-box p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem; /* Same as list for consistency */
    line-height: 1.6; /* Readable spacing */
}

.mission-section {
    display: flex;
    justify-content: center;
    margin: 40px 0; /* Same spacing as history-box and vision-section */
}

.mission-container {
    width: 850px;
    height: 580px; /* Updated height */
    display: flex;
}

.mission-left {
    width: 500px;
    height: 100%;
    background-size: cover; /* Ensure background image fits perfectly */
    background-position: center;
    position: relative; /* For positioning the img */
}

.mission-left img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure foreground image fits perfectly */
    object-position: center;
}

.mission-right {
    width: 350px; /* 850px - 500px */
    height: 100%;
    background-color: #000; /* Pure black background */
    display: flex;
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
}

.mission-text-box {
    width: 380px; /* Slightly wider than vision-text-box to fit text */
    height: 360px; /* Slightly shorter to fit with padding */
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent black for glass effect */
    backdrop-filter: blur(10px); /* Glass effect blur */
    padding: 20px; /* Smaller padding for text fit */
    color: #fff; /* White text for contrast */
}

.mission-text-box h2 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 2rem; /* Match vision-text-box h2 */
    color: #d4af37; /* Gold color */
    text-transform: uppercase;
    margin-bottom: 20px; /* Space below heading */
}

.mission-text-box p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem; /* Small, readable font */
    line-height: 1.6; /* Readable spacing */
}

.scroll-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black */
    backdrop-filter: blur(10px); /* Glass effect */
    color: #d4af37; /* Gold icon */
    border: 2px solid #d4af37; /* Gold border */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000; /* Ensure it stays above other content */
    transition: background-color 0.3s, transform 0.3s;
}

.scroll-top-btn:hover {
    background-color: rgba(0, 0, 0, 0.9); /* Darker on hover */
    transform: scale(1.1); /* Slight zoom effect */
}

.scroll-top-btn i {
    font-size: 1.5rem; /* Icon size */
}

/* This is CSS for the CONTACT PAGE */
.contact-form-section {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.contact-container {
    width: 850px;
    height: 580px;
    display: flex;
}

.contact-left {
    width: 500px;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.contact-right {
    width: 350px;
    height: 100%;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-text-box {
    width: 380px;
    height: 360px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 20px;
    color: #fff;
    overflow-y: auto;
}

.contact-text-box h2 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 2rem;
    color: #d4af37;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: #d4af37;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #d4af37;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fff;
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: #d4af37;
    color: #000;
    border: none;
    border-radius: 5px;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #b8962e;
}

.contact-info-section {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.info-container {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.info-text-box {
    width: 380px;
    height: 400px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 30px;
    margin-left: 50px;
    color: #fff;
}

.info-text-box h2 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 2rem;
    color: #d4af37;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
}

.info-text-box ul {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-text-box li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.info-text-box i {
    color: #d4af37;
    margin-right: 10px;
    width: 20px;
}

.about-section .about-text h2 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 2rem;
    color: #d4af37;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
}

.form-message {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.2);
    color: #fff;
    border: 1px solid #4caf50;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.2);
    color: #fff;
    border: 1px solid #f44336;
}
/* Existing styles from about.html CSS (assumed to be in style.css) */
/* Existing styles from about.html CSS (assumed to be in style.css) */
/* Existing styles from about.html CSS (assumed to be in style.css) */
.about-hero {
    position: relative;
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 3.5rem;
    color: #d4af37;
    text-transform: uppercase;
    margin: 20px 0 10px 0;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
}

.about-text p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    max-width: 600px;
    text-align: center;
    line-height: 1.5;
    margin-left: auto;
    margin-right: auto;
}

.history-box {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.box-container {
    width: 800px;
    height: 400px;
    display: flex;
}

.box-left {
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.box-right {
    width: 50%;
    height: 100%;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-right .box-text {
    font-family: 'Open Sans', sans-serif !important;
    font-size: 0.8rem !important;
    color: #fff !important;
    text-align: center;
    padding: 30px;
    line-height: 1.5;
}

.vision-section {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.vision-container {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.vision-text-box {
    width: 380px;
    height: 400px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 30px;
    margin-left: 50px;
    color: #fff;
}

.vision-text-box h2 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 2rem;
    color: #d4af37;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.vision-text-box ul {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.vision-text-box p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
}

.mission-section {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.mission-container {
    width: 850px;
    height: 580px;
    display: flex;
}

.mission-left {
    width: 500px;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.mission-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.mission-right {
    width: 350px;
    height: 100%;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-text-box {
    width: 380px;
    height: 360px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 20px;
    color: #fff;
}

.mission-text-box h2 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 2rem;
    color: #d4af37;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.mission-text-box p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
}

.scroll-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: #d4af37;
    border: 2px solid #d4af37;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: background-color 0.3s, transform 0.3s;
}

.scroll-top-btn:hover {
    background-color: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.scroll-top-btn i {
    font-size: 1.5rem;
}

/* Updated styles for contact.html */
.contact-form-section {
    display: flex;
    justify-content: center;
    margin: 50px 0;
}

.contact-container {
    width: 850px;
    height: 580px;
    display: flex;
}

.contact-left {
    width: 350px;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.contact-right {
    width: 500px;
    height: 100%;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-text-box {
    width: 490px;
    height: 440px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 25px;
    color: #fff;
    overflow-y: auto;
}

.contact-text-box h2 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 2rem;
    color: #d4af37;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: #d4af37;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    max-width: 460px;
    padding: 12px;
    border: 1px solid #d4af37;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fff;
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

.submit-btn {
    width: 100%;
    max-width: 460px;
    padding: 14px;
    background: #d4af37;
    color: #000;
    border: none;
    border-radius: 5px;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 15px;
}

.submit-btn:hover {
    background: #b8962e;
}

.contact-info-section {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.info-container {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.info-text-box {
    width: 380px;
    height: 400px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 30px;
    margin-left: 50px;
    color: #fff;
}

.info-text-box h2 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 2rem;
    color: #d4af37;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
}

.info-text-box ul {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-text-box li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.info-text-box i {
    color: #d4af37;
    margin-right: 10px;
    width: 20px;
}

.about-section .about-text h2 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 2rem;
    color: #d4af37;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
}

.form-message {
    margin-bottom: 20px;
    padding: 12px;
    border-radius: 5px;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    max-width: 460px;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.2);
    color: #fff;
    border: 1px solid #4caf50;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.2);
    color: #fff;
    border: 1px solid #f44336;
}
input[type="date"] {
    width: 100%;
    padding: 0.75rem;
    font-size: 1.1rem;          /* bigger on mobile */
    border-radius: 6px;
}

@media (max-width: 576px) {
    .age-gate-container {
        padding: 1.5rem 1rem;
    }
    h1 {
        font-size: 2rem;
    }
}
/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

#back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

/* Smaller on mobile */
@media (max-width: 576px) {
    #back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        bottom: 20px;
        right: 20px;
    }
}
/* Dark wine / burgundy theme colors */
:root {
    --wine-dark:    #4a0e0e;    /* deep burgundy/red - adjust hex if you have a specific brand color */
    --wine-darker:  #2c0808;    /* even darker variant for hover/footer */
    --wine-text:    #f5e6e6;    /* light off-white for text contrast */
    --wine-accent:  #8b1e1e;    /* slightly brighter red for accents/hover */
}

/* Navbar dark wine style */
.navbar-wine {
    background-color: var(--wine-dark) !important;
    color: var(--wine-text) !important;
}

.navbar-wine .navbar-brand img,
.navbar-wine .nav-link,
.navbar-wine .navbar-brand,
.navbar-wine .shop-btn,
.navbar-wine .cart-icon {
    color: var(--wine-text) !important;
}

.navbar-wine .nav-link:hover,
.navbar-wine .shop-btn:hover,
.navbar-wine .cart-icon:hover {
    color: var(--wine-accent) !important;
    background-color: rgba(255,255,255,0.08);
}

/* Footer dark wine style */
.footer-wine {
    background-color: var(--wine-darker) !important;
    color: var(--wine-text) !important;
}

.footer-wine a,
.footer-wine p,
.footer-wine .social-links i {
    color: var(--wine-text) !important;
}

.footer-wine a:hover,
.footer-wine .social-links i:hover {
    color: var(--wine-accent) !important;
}

/* LOGS Logo - Prevent it from filling the screen */
.logo-img {
    height: 50px;               /* Main size - adjust to taste: 40-60px usually perfect */
    width: auto;                /* Keeps original aspect ratio */
    max-width: 180px;           /* Caps it so it never gets crazy wide */
    object-fit: contain;        /* Doesn't stretch/distort */
    display: block;
}

/* Mobile - make it a bit smaller to avoid crowding hamburger */
@media (max-width: 991px) {     /* Below lg breakpoint where navbar collapses */
    .logo-img {
        height: 40px;
        max-width: 140px;
    }
}

/* Extra safety: force navbar-brand not to expand too much */
.navbar-brand {
    padding: 0.5rem 1rem !important;  /* Reduces padding if needed */
    max-width: 60%;                   /* Prevents overflow on very small screens */
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 90px;           /* Positioned above the back-to-top button */
    right: 25px;
    z-index: 9998;          /* Just below back-to-top (which is usually 9999) */
    width: 60px;
    height: 60px;
    background-color: #25D366;  /* Official WhatsApp green */
    color: white !important;
    border-radius: 50%;
    text-align: center;
    font-size: 2.2rem;      /* Icon size */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    background-color: #20b958;
}

/* Adjust positioning on very small screens */
@media (max-width: 576px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 2rem;
        bottom: 80px;
        right: 20px;
    }
}
.wine-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.wine-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25) !important;
}

.wine-overlay {
    background: linear-gradient(to top, rgba(74,14,14,0.9) 0%, rgba(74,14,14,0) 100%);
    transition: all 0.4s ease;
}

.wine-details {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.opacity-0 { opacity: 0; }
.translateY-20 { transform: translateY(20px); }
.opacity-100 { opacity: 1; }
.translateY-0 { transform: translateY(0); }

.whatsapp-notice {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Responsive CSS - Only applies on mobile/tablet screens, desktop unchanged */

/* Phones (small screens < 768px) */
@media (max-width: 767px) {
    body {
        font-size: 16px; /* Slightly larger text for readability on mobile */
        padding: 0 10px; /* Add side padding to prevent edge-to-edge text */
    }

    .navbar {
        flex-direction: column; /* Stack navbar items vertically on mobile */
    }

    .navbar-brand {
        margin: 0 auto 10px; /* Center logo on mobile */
    }

    .nav-link {
        padding: 12px 0; /* More spacing for touch-friendly links */
        text-align: center;
    }

    p, h1, h2, h3 {
        word-wrap: break-word; /* Prevent long words from overflowing */
        overflow-wrap: break-word;
        hyphens: auto; /* Auto-hyphenate to avoid scatter */
        text-align: center; /* Center text for better mobile flow */
    }

    img {
        max-width: 100%; /* Make images responsive, no overflow */
        height: auto;
    }

    .container-fluid {
        padding: 15px; /* Add padding to main content to prevent scatter */
    }

    .background-image {
        background-size: contain; /* Fit background images better on mobile */
        background-repeat: no-repeat;
    }

    button, input {
        width: 100%; /* Full-width buttons/forms for easy tapping */
        margin: 10px 0;
    }
}

/* Tablets (768px – 991px) — optional, for medium screens */
@media (min-width: 768px) and (max-width: 991px) {
    .navbar-nav {
        justify-content: center; /* Center nav items on tablets */
    }

    p, h1, h2, h3 {
        text-align: center; /* Center text for better alignment */
    }
}
/* Mobile-only fixes for the "ENJOY LOGS UNIQUE TASTE" section - desktop unchanged */

@media (max-width: 991px) {
    .taste-section {
        flex-direction: column !important; /* Stack image on top of text */
        align-items: center !important;
        padding: 30px 15px !important;
    }

    .taste-image {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 25px !important; /* Space between image and text */
    }

    .taste-image img {
        width: 100% !important;
        height: auto !important;
        border-radius: 12px !important; /* Optional nice rounding */
    }

    .taste-content {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important; /* Center text on mobile */
    }

    .taste-content h2 {
        font-size: 1.8rem !important;
        margin-bottom: 20px !important;
    }

    .taste-content p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 18px !important;
    }

