/* Sheryl's Bakery & Cafe - Cozy Country Bakery Style */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@400;600;700&family=Great+Vibes&family=Caveat:wght@400;500;600;700&family=Amatic+SC:wght@400;700&display=swap');

:root {
    /* Warm country palette */
    --yellow-light: #FFEB85;
    --yellow-main: #FFD54F;
    --yellow-dark: #FFAB40;
    --yellow-accent: #FF9800;
    --cream: #FFF8E1;
    --cream-light: #FFFAEC;
    --cream-dark: #FFE082;

    /* Cozy browns & naturals */
    --barn-red: #8B3A3A;
    --barn-red-light: #A85454;
    --wood-brown: #6B4423;
    --wood-light: #8B6914;
    --wheat: #DEB887;
    --linen: #FAF0E6;

    /* Sign colors */
    --charcoal: #252525;
    --charcoal-dark: #1A1A1A;
    --sign-brown: #3A3228;

    /* Accent colors */
    --warm-brown: #5A4435;
    --coffee: #4A3528;
    --rust: #A65D3F;
    --sage: #6A7B5E;
    --sage-light: #8FA880;

    /* Text */
    --text-dark: #1A1A1A;
    --text-light: #4A4A4A;
    --chalkboard: #2C3E2C;

    /* Shadows - HARD */
    --shadow-soft: rgba(0, 0, 0, 0.35);
    --shadow-medium: rgba(0, 0, 0, 0.55);
    --shadow-dark: rgba(0, 0, 0, 0.75);
    --shadow-warm: rgba(107, 68, 35, 0.5);
    --shadow-deep: 0 15px 50px rgba(0, 0, 0, 0.6), 0 5px 15px rgba(0, 0, 0, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    background: linear-gradient(135deg,
        var(--yellow-accent) 0%,
        var(--yellow-dark) 25%,
        var(--yellow-main) 50%,
        var(--yellow-light) 75%,
        var(--cream) 100%);
    background-size: 300% 300%;
    background-position: 0% 0%;
    transition: background-position 0.1s ease-out;
    color: var(--text-dark);
    min-height: 100vh;
    line-height: 1.8;
    position: relative;
}

/* Subtle linen texture overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
}

/* Scroll-triggered animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.float-gentle {
    animation: gentleFloat 3s ease-in-out infinite;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

/* Header - matching the sign */
header {
    background: linear-gradient(180deg, var(--charcoal-dark) 0%, var(--sign-brown) 50%, var(--charcoal-dark) 100%);
    border-bottom: 4px solid var(--yellow-accent);
    padding: 0.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 30px var(--shadow-dark), 0 4px 10px rgba(0,0,0,0.5);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--cream);
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

@keyframes fadeSlideIn {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.logo-img.header-main-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    margin: 8px 0;
    border-radius: 10px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
    animation: fadeSlideIn 0.6s ease-out;
}

.logo-img.header-main-logo:hover {
    transform: scale(1.05);
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Great Vibes', cursive;
    font-size: 2.2rem;
    font-weight: 400;
    text-shadow: 2px 2px 4px var(--shadow-dark);
    color: var(--cream);
    white-space: nowrap;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--cream);
    opacity: 0.9;
}

/* Status Banner */
.status-banner {
    background: linear-gradient(145deg, var(--charcoal), var(--sign-brown));
    border: 3px solid var(--yellow-accent);
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
    text-align: center;
    margin: 0.5rem auto;
    max-width: fit-content;
}

.status-banner.open {
    border-color: var(--sage);
    background: linear-gradient(145deg, #4a7c59, #5a9c6a);
}

.status-banner.closed {
    border-color: var(--rust);
    background: linear-gradient(145deg, #8B4513, #A65D3F);
}

.status-text {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: var(--cream);
    font-weight: 600;
}

.status-text strong {
    color: var(--yellow-light);
}

/* Navigation */
nav ul {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    flex-wrap: wrap;
}

nav a {
    color: var(--cream);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
    border: 2px solid transparent;
}

nav a:hover,
nav a.active {
    background: var(--yellow-main);
    color: var(--charcoal-dark);
    border-color: var(--yellow-dark);
}

/* Hero Section - Cozy Chalkboard Style */
.hero {
    text-align: center;
    padding: 3rem 1rem;
    background:
        linear-gradient(rgba(44, 62, 44, 0.95), rgba(35, 50, 35, 0.95));
    border-bottom: 4px solid var(--wood-brown);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='chalk'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.5' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23chalk)'/%3E%3C/svg%3E");
    opacity: 0.08;
    pointer-events: none;
}

.hero h1 {
    font-family: 'Amatic SC', cursive;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--cream);
    text-shadow: 2px 2px 0 var(--charcoal-dark);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    position: relative;
}

.hero .tagline {
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    color: var(--yellow-light);
    position: relative;
    font-weight: 400;
}

/* Panels */
.panel {
    background: linear-gradient(145deg, var(--cream-light), var(--cream));
    border: 3px solid var(--yellow-dark);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow:
        inset 0 2px 10px rgba(255, 255, 255, 0.3),
        0 12px 40px var(--shadow-medium),
        0 6px 15px var(--shadow-soft);
}

.panel h2 {
    font-family: 'Playfair Display', serif;
    color: var(--charcoal-dark);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid var(--yellow-accent);
    padding-bottom: 0.5rem;
}

.panel h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.3rem;
    color: var(--warm-brown);
    font-weight: 700;
    margin: 1.5rem 0 0.75rem;
}

.panel p {
    color: var(--text-dark);
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

/* Menu Tabs */
.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.menu-tab {
    background: var(--cream-dark);
    border: 2px solid var(--yellow-dark);
    padding: 0.85rem 1.75rem;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--charcoal);
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px var(--shadow-soft);
}

.menu-tab:hover {
    background: var(--yellow-light);
    border-color: var(--yellow-accent);
}

.menu-tab.active {
    background: var(--yellow-main);
    color: var(--charcoal-dark);
    border-color: var(--yellow-dark);
    box-shadow: 0 6px 20px var(--shadow-medium);
}

/* Menu Section */
.menu-section {
    display: none;
}

.menu-section.active {
    display: block;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem;
    margin: 0.75rem 0;
    background: var(--cream);
    border-radius: 15px;
    border-left: 4px solid var(--yellow-accent);
    transition: all 0.3s ease;
}

.menu-item:hover {
    background: var(--cream-dark);
    transform: translateX(5px);
}

.menu-item-info {
    flex: 1;
}

.menu-item-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--charcoal-dark);
    margin-bottom: 0.3rem;
}

.menu-item-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.5;
}

.menu-item-price {
    font-family: 'Lato', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--warm-brown);
    white-space: nowrap;
    margin-left: 1rem;
}

/* Info Cards Grid */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.info-card {
    background: linear-gradient(145deg, var(--linen), var(--cream));
    border: 3px solid var(--wood-brown);
    border-radius: 8px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px var(--shadow-medium), 0 4px 10px var(--shadow-soft);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-dark), 0 8px 15px var(--shadow-medium);
    border-color: var(--barn-red);
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--wood-brown);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.info-card p {
    color: var(--text-dark);
    font-size: 1.15rem;
    line-height: 1.6;
}

.info-card a {
    color: var(--barn-red);
    text-decoration: none;
    font-weight: 600;
}

.info-card a:hover {
    text-decoration: underline;
}

/* Hours Table */
.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 1.1rem;
}

.hours-table th,
.hours-table td {
    padding: 0.9rem 1.25rem;
    text-align: left;
    border-bottom: 2px solid var(--yellow-dark);
}

.hours-table th {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--charcoal-dark);
    font-weight: 600;
}

.hours-table td {
    color: var(--text-dark);
}

.hours-table tr:hover {
    background: var(--yellow-light);
}

/* Hours table in chalkboard */
.panel-chalkboard .hours-table th,
.panel-chalkboard .hours-table td {
    color: var(--cream);
    border-bottom-color: rgba(222, 184, 135, 0.3);
}

.panel-chalkboard .hours-table th {
    color: var(--yellow-light);
}

.panel-chalkboard .hours-table tr:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Photo Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow-soft);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--charcoal-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--yellow-dark);
    border-radius: 10px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    background: var(--cream-light);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--yellow-accent);
    box-shadow: 0 0 10px var(--shadow-soft);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Buttons */
.btn {
    display: inline-block;
    background: linear-gradient(145deg, var(--yellow-main), var(--yellow-dark));
    color: var(--charcoal-dark);
    padding: 0.85rem 2.25rem;
    border: none;
    border-radius: 25px;
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 6px 20px var(--shadow-medium), 0 3px 8px var(--shadow-soft);
}

.btn:hover {
    background: linear-gradient(145deg, var(--yellow-dark), var(--yellow-accent));
    color: var(--charcoal-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow-dark), 0 5px 12px var(--shadow-medium);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--yellow-dark);
    color: var(--charcoal-dark);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--yellow-main);
    color: var(--charcoal-dark);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 15px;
    border: 2px solid var(--yellow-dark);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--cream-dark);
    transform: translateY(-5px);
}

.feature-item .icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.feature-item h3 {
    font-family: 'Playfair Display', serif;
    color: var(--charcoal-dark);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Signature Items */
.signature-item {
    background: linear-gradient(145deg, var(--cream-dark), var(--yellow-light));
    border: 3px solid var(--yellow-accent);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1rem 0;
    position: relative;
}

.signature-item::before {
    content: '★';
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--yellow-accent);
    color: var(--charcoal-dark);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.signature-item h4 {
    font-family: 'Playfair Display', serif;
    color: var(--charcoal-dark);
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-dark) 100%);
    border-top: 4px solid var(--yellow-accent);
    padding: 1.25rem 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 -8px 30px var(--shadow-dark);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-left .logo-img {
    height: 50px;
    border-radius: 8px;
}

.footer-left .logo-text {
    font-size: 1.2rem;
}

.footer-center {
    text-align: center;
}

.footer-hours {
    font-size: 1.15rem;
    color: var(--cream);
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    display: inline-block;
}

.footer-hours.open {
    background: rgba(76, 175, 80, 0.3);
    border: 2px solid #4caf50;
}

.footer-hours.closed {
    background: rgba(244, 67, 54, 0.3);
    border: 2px solid #f44336;
}

.footer-right {
    text-align: right;
}

.footer-right p {
    font-size: 1rem;
    color: var(--cream);
}

.footer-right a {
    color: var(--yellow-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-right a:hover {
    color: var(--yellow-main);
    text-decoration: underline;
}

.footer-credit {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.social-icons {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.6rem;
    background: var(--yellow-main);
    border-radius: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--charcoal-dark);
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 3px 10px var(--shadow-soft);
}

.social-icon .icon-symbol {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
}

.social-icon .icon-text {
    max-width: 0;
    overflow: hidden;
    transition: max-width 0.4s ease, margin 0.3s ease;
    font-size: 1rem;
    margin-left: 0;
}

.social-icon:hover .icon-text {
    max-width: 220px;
    margin-left: 0.5rem;
}

.social-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px var(--shadow-dark);
}

/* Facebook blue */
.social-icon.facebook {
    background: #1877F2;
    color: white;
}

.social-icon.facebook:hover {
    background: #166FE5;
}

/* Phone - green */
.social-icon.phone {
    background: var(--sage);
    color: white;
}

.social-icon.phone:hover {
    background: #5a7a4e;
}

/* Email - warm brown */
.social-icon.email {
    background: var(--warm-brown);
    color: white;
}

.social-icon.email:hover {
    background: #4a3425;
}

.social-icons img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

/* Decorative Dividers & Flourishes */
.divider {
    text-align: center;
    margin: 2rem 0;
    color: var(--wood-brown);
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
    position: relative;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--wheat), transparent);
}

.divider::before {
    right: calc(50% + 60px);
}

.divider::after {
    left: calc(50% + 60px);
}

/* Elegant flourish divider */
.flourish {
    text-align: center;
    margin: 2.5rem 0;
    position: relative;
    height: 20px;
}

.flourish::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--wood-brown), var(--wheat), var(--wood-brown), transparent);
    border-radius: 2px;
}

.flourish::after {
    content: '◆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--cream);
    padding: 0 1rem;
    color: var(--wood-brown);
    font-size: 0.8rem;
}

/* Rustic Frame Panel */
.panel-rustic {
    background:
        linear-gradient(var(--linen), var(--linen)) padding-box,
        linear-gradient(145deg, var(--wood-brown), var(--wheat), var(--wood-brown)) border-box;
    border: 5px solid transparent;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow:
        inset 0 0 30px rgba(139, 69, 19, 0.08),
        0 12px 40px var(--shadow-medium),
        0 6px 15px var(--shadow-warm);
    position: relative;
}

/* Corner decorations for rustic panels */
.panel-rustic::before,
.panel-rustic::after {
    content: '✿';
    position: absolute;
    font-size: 1.2rem;
    color: var(--barn-red);
    opacity: 0.6;
}

.panel-rustic::before {
    top: 8px;
    left: 12px;
}

.panel-rustic::after {
    bottom: 8px;
    right: 12px;
}

/* Chalkboard-style panel */
.panel-chalkboard {
    background: linear-gradient(145deg, #2C3E2C, #1a2a1a);
    border: 6px solid var(--wood-brown);
    border-radius: 4px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow:
        inset 0 0 50px rgba(0, 0, 0, 0.4),
        0 15px 50px var(--shadow-dark),
        0 8px 20px var(--shadow-medium);
    position: relative;
}

.panel-chalkboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='chalk'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.5' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23chalk)'/%3E%3C/svg%3E");
    opacity: 0.06;
    pointer-events: none;
    border-radius: 2px;
}

.panel-chalkboard h2 {
    font-family: 'Playfair Display', serif;
    color: var(--cream);
    font-size: 2.4rem;
    border-bottom: 3px solid var(--wheat);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.panel-chalkboard p {
    color: var(--linen);
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    line-height: 1.7;
}

/* Handwritten-style header */
.handwritten {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 400;
}

/* Wooden sign header */
.wooden-sign {
    background: linear-gradient(180deg, #8B6914 0%, #6B4423 50%, #4a2f16 100%);
    color: var(--cream);
    padding: 1rem 2rem;
    border-radius: 4px;
    text-align: center;
    box-shadow:
        0 4px 8px var(--shadow-dark),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    border: 3px solid #4a2f16;
    position: relative;
}

.wooden-sign h2 {
    font-family: 'Amatic SC', cursive;
    font-size: 2rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    border: none;
    padding: 0;
}

/* Recipe card style */
.recipe-card {
    background: var(--linen);
    border: 2px solid var(--wood-brown);
    border-radius: 6px;
    padding: 1.5rem;
    margin: 1rem 0;
    box-shadow:
        4px 4px 0 var(--wheat),
        8px 8px 25px var(--shadow-medium);
    transform: rotate(-0.5deg);
    transition: all 0.3s ease;
}

.recipe-card:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow:
        5px 5px 0 var(--wheat),
        12px 12px 35px var(--shadow-dark);
}

.recipe-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--barn-red);
    margin-bottom: 0.5rem;
    border-bottom: 2px dashed var(--wheat);
    padding-bottom: 0.5rem;
}

.recipe-card p {
    font-size: 1.1rem;
}

/* Cozy animation delays for staggered entrance */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Enhanced gallery item with rustic frame */
.gallery-item-framed {
    border-radius: 4px;
    overflow: hidden;
    box-shadow:
        0 0 0 3px var(--wood-brown),
        0 0 0 6px var(--wheat),
        0 8px 25px var(--shadow-warm);
    transition: all 0.4s ease;
    position: relative;
}

.gallery-item-framed::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    pointer-events: none;
}

.gallery-item-framed:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow:
        0 0 0 4px var(--wood-brown),
        0 0 0 8px var(--wheat),
        0 15px 40px var(--shadow-medium);
}

.gallery-item-framed img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* Photo Carousel */
.carousel-section {
    background: linear-gradient(145deg, var(--linen), var(--cream));
    border: 4px solid var(--wood-brown);
    border-radius: 8px;
    padding: 2rem;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px var(--shadow-medium), 0 6px 15px var(--shadow-soft);
}

.carousel-section h2 {
    font-family: 'Playfair Display', serif;
    color: var(--wood-brown);
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.5);
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.carousel-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.1s linear;
}

.carousel-item {
    flex-shrink: 0;
    width: 300px;
    height: 220px;
    border-radius: 6px;
    overflow: hidden;
    border: 3px solid var(--wood-brown);
    box-shadow: 0 6px 20px var(--shadow-medium);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-speed-zone {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 10;
    cursor: pointer;
}

.carousel-speed-zone.left {
    left: 0;
    background: linear-gradient(90deg, var(--cream) 0%, rgba(250, 240, 230, 0.8) 30%, transparent 100%);
}

.carousel-speed-zone.right {
    right: 0;
    background: linear-gradient(-90deg, var(--cream) 0%, rgba(250, 240, 230, 0.8) 30%, transparent 100%);
}

/* Text Utilities */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* Main content padding for fixed footer */
main {
    padding-bottom: 120px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        justify-content: center;
        text-align: center;
    }

    .logo-text {
        font-size: 1.8rem;
    }

    nav ul {
        justify-content: center;
    }

    footer {
        padding: 0.5rem 0;
    }

    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-left {
        gap: 0.5rem;
    }

    .footer-left .logo-img {
        height: 35px;
    }

    .footer-left .logo-text {
        font-size: 0.85rem;
    }

    .footer-center {
        order: 3;
        width: 100%;
        text-align: center;
    }

    .footer-hours {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }

    .footer-right {
        text-align: right;
    }

    .footer-right p {
        font-size: 0.75rem;
    }

    .footer-credit {
        font-size: 0.7rem;
    }

    .social-icons {
        display: none;
    }

    main {
        padding-bottom: 85px;
    }

    .menu-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .menu-item-price {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .logo-img.header-main-logo {
        height: 75px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .panel {
        padding: 1rem;
    }

    footer {
        padding: 0.3rem 0;
    }

    .footer-content {
        gap: 0.3rem;
    }

    .footer-left .logo-img {
        height: 25px;
    }

    .footer-left .logo-text {
        font-size: 0.75rem;
    }

    .footer-right p {
        font-size: 0.65rem;
    }

    .footer-hours {
        font-size: 0.7rem;
        padding: 0.15rem 0.4rem;
    }

    .footer-credit {
        font-size: 0.6rem;
    }

    main {
        padding-bottom: 70px;
    }
}
