:root {
    --cream: #F9F6F1;
    --sand: #E8DCC4;
    --wheat: #D4C4A8;
    --clay: #B5967D;
    --earth: #8B7355;
    --bark: #5C4A3A;
    --sage: #A8B0A0;
}

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

body {
    font-family: 'Work Sans', sans-serif;
    background-color: var(--cream);
    color: var(--bark);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: #fcf6ec;
}

/* Subtle texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, rgba(0,0,0,0.02) 0px, transparent 1px, transparent 2px, rgba(0,0,0,0.02) 3px),
        repeating-linear-gradient(90deg, rgba(0,0,0,0.02) 0px, transparent 1px, transparent 2px, rgba(0,0,0,0.02) 3px);
    pointer-events: none;
    opacity: 0.5;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    text-align: center;
    padding: 4rem 1rem 3rem;
    animation: fadeIn 1s ease-out;
}

.header-image {
    max-width: 130px;
    height: auto;
    /* margin-bottom: 2rem; */
    border-radius: 8px;
    animation: fadeIn 1s ease-out;
}

.header-accent {
    display: inline-block;
    width: 60px;
    height: 3px;
    background-color: var(--clay);
    margin-bottom: 2rem;
    animation: grow 0.8s ease-out;
}

h1 {
    font-family: 'Lora', serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    color: var(--earth);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.tagline {
    font-family: 'Crimson Text', serif;
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: var(--clay);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1rem;
}

.location {
    font-size: 0.95rem;
    color: var(--earth);
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.main-content {
    background-color: var(--sand);
    padding: 3rem 2.5rem;
    margin: 3rem 0;
    border: 2px solid var(--wheat);
    box-shadow: 0 8px 24px rgba(92, 74, 58, 0.08);
    animation: slideUp 0.8s ease-out 0.2s backwards;
}

.section {
    margin-bottom: 3rem;
}

.section:last-child {
    margin-bottom: 0;
}

h2 {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    color: var(--earth);
    margin-bottom: 1.2rem;
    font-weight: 600;
    border-bottom: 1px solid var(--wheat);
    padding-bottom: 0.5rem;
}

.bread-list {
    list-style: none;
    padding-left: 0;
}

.bread-list li {
    padding: 0.8rem 0;
    font-size: 1.05rem;
    color: var(--bark);
    border-bottom: 1px dashed var(--wheat);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.bread-list li:last-child {
    border-bottom: none;
}

.bread-name {
    font-weight: 400;
}

.bread-price {
    font-family: 'Crimson Text', serif;
    color: var(--earth);
    font-weight: 600;
    font-size: 1.1rem;
}

.description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--bark);
    margin-bottom: 1.5rem;
}

.hours-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.8rem 1.5rem;
    margin-top: 1rem;
}

.day {
    font-weight: 400;
    color: var(--earth);
}

.time {
    color: var(--bark);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.05rem;
    color: var(--bark);
}

.contact-item::before {
    content: '•';
    color: var(--clay);
    font-size: 1.5rem;
}

.contact-item a {
    color: var(--earth);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.contact-item a:hover {
    border-bottom-color: var(--clay);
}

.note {
    background-color: var(--wheat);
    padding: 1.5rem;
    margin-top: 2rem;
    border-left: 3px solid var(--clay);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--bark);
}

footer {
    text-align: center;
    padding: 3rem 1rem 2rem;
    font-size: 0.9rem;
    color: var(--clay);
    animation: fadeIn 1s ease-out 0.4s backwards;
}

.decorative-line {
    width: 100px;
    height: 1px;
    background-color: var(--wheat);
    margin: 0 auto 1.5rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes grow {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 1rem;
    }

    header {
        padding: 3rem 1rem 2rem;
    }

    .header-image {
        max-width: 150px;
    }

    .main-content {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }

    .bread-list li {
        flex-direction: column;
        gap: 0.3rem;
        align-items: flex-start;
    }

    .hours-grid {
        gap: 0.6rem 1rem;
    }
}