:root {
    --maroon: #6B2C2C;
    --deep-maroon: #481F1F;
    --green: #3E5A38;
    --accent-green: #7E9A5F;
    --cream: #F8F4ED;
    --white: #FFFFFF;
    --text: #2C2118;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Libre Baskerville', Georgia, serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.8;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', 'Libre Baskerville', serif;
}

/* ====================== NAV ====================== */
nav {
    background: var(--deep-maroon);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #EDE0C8;
    font-size: 1.75rem;
    letter-spacing: 6px;
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 8px 12px;
}

nav a:hover {
    color: var(--accent-green);
}

/* ====================== HERO ====================== */
.hero {
    height: 55vh;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(72, 31, 31, 0.65);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-overlay h1 {
    font-size: 3.6rem;
    letter-spacing: 8px;
    color: #EDE0C8;
    margin-bottom: 16px;
}

.tagline {
    font-size: 1.4rem;
    font-style: italic;
    max-width: 620px;
    margin-bottom: 30px;
}

.youtube-btn {
    background: var(--green);
    color: white;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s;
}

.youtube-btn:hover {
    background: var(--accent-green);
    transform: scale(1.05);
}

/* ====================== MAIN CONTENT ====================== */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.breads-section {
    padding: 90px 0 70px;
    background: var(--white);
}

.breads-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--maroon);
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.bread-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.bread-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.bread-image {
    height: 240px;
    background-size: cover;
    background-position: center;
}

.card-info {
    padding: 28px 24px;
    text-align: center;
}

.card-info h3 {
    font-size: 1.65rem;
    color: var(--deep-maroon);
    margin-bottom: 10px;
}

.price {
    font-size: 2rem;
    color: var(--green);
    font-weight: bold;
    margin: 12px 0 20px;
}

.card-info p {
    font-size: 1.02rem;
    margin-bottom: 25px;
}

.btn {
    background: var(--maroon);
    color: white;
    padding: 13px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05rem;
    display: inline-block;
}

.btn:hover {
    background: var(--green);
}

.custom-btn {
    background: var(--accent-green);
}

/* ====================== MARIN SECTION ====================== */
.marin-section {
    background: var(--deep-maroon);
    color: white;
    padding: 90px 0;
    text-align: center;
}

.marin-section h2 {
    font-size: 2.6rem;
    color: #EDE0C8;
    margin-bottom: 30px;
}

.marin-section p {
    font-size: 1.15rem;
    max-width: 680px;
    margin: 0 auto 35px;
}

.delivery-info {
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.12);
    padding: 25px 40px;
    border-radius: 16px;
    display: inline-block;
}

/* ====================== FOOTER ====================== */
footer {
    background: var(--deep-maroon);
    color: #ccc;
    text-align: center;
    padding: 70px 20px 50px;
}

footer a {
    color: var(--accent-green);
}

/* ====================== MOBILE MENU ====================== */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }

    nav ul {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        margin-top: 15px;
    }

    .hero {
        height: 60vh;
    }

    .hero-overlay h1 {
        font-size: 2.8rem;
        letter-spacing: 6px;
    }

    .tagline {
        font-size: 1.25rem;
    }

    .bread-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bread-image {
        height: 220px;
    }

    .breads-section h2 {
        font-size: 2.2rem;
    }

    .marin-section h2 {
        font-size: 2.3rem;
    }
}