:root {
    /* Color Palette - Warm, Natural, Bakery theme */
    --color-wood-dark: #3e2723;
    --color-wood-main: #5d4037;
    --color-wood-light: #8d6e63;
    --color-accent: #d35400; /* Warm baked orange */
    --color-cream: #fbf9f6;
    --color-bg: #fffdfa;
    --color-green: #558b2f; /* Local vegetables */
    --color-text: #4a4a4a;
    --color-text-light: #757575;
    
    /* Typography */
    --font-heading: 'Shippori Mincho', serif;
    --font-body: 'Zen Maru Gothic', sans-serif;
    
    /* Variables */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --shadow-soft: 0 10px 30px rgba(93, 64, 55, 0.08);
    --shadow-hover: 0 15px 40px rgba(93, 64, 55, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.8;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

li {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

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

.bg-cream {
    background-color: var(--color-cream);
}

.bg-wood {
    background-color: #f4ece4;
    position: relative;
}
.bg-wood::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' 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' height='100' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.layout-reverse {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .section-inner {
        flex-direction: column !important;
        gap: 40px;
    }
    .section {
        padding: 60px 0;
    }
}

.text-content, .image-content {
    flex: 1;
}

/* Typography elements */
h1, h2, h3, h4, .font-heading {
    font-family: var(--font-heading);
    color: var(--color-wood-dark);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
}

.title-light {
    color: var(--color-wood-dark);
}

.section-badge {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-accent);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.badge-light {
    color: var(--color-wood-main);
}

.section-divider {
    height: 2px;
    width: 60px;
    background-color: var(--color-accent);
    margin-bottom: 30px;
}
.section-divider.center {
    margin: 0 auto 30px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: var(--transition);
    background-color: rgba(255, 253, 250, 0);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.header-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-wood-dark);
    letter-spacing: 1px;
}

.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Mobile Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-wood-dark);
    position: absolute;
    left: 0;
    transition: var(--transition);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--color-cream);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    text-align: center;
}

.mobile-menu li {
    margin-bottom: 30px;
}

.mobile-menu a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-wood-dark);
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .hamburger { display: block; }
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.2) 100%);
}

@media (max-width: 768px) {
    .hero-image::after {
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-left: 10%;
    max-width: 600px;
}

@media (max-width: 768px) {
    .hero-content {
        padding-left: 5%;
        padding-right: 5%;
    }
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.3;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards 0.3s;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-wood-main);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards 0.6s;
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; }
}

/* Feature images and UI components */
.rounded-img {
    border-radius: var(--border-radius-lg);
}

.shadow {
    box-shadow: var(--shadow-soft);
}

/* Today's Bread Section */
.fresh-baked-header {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.fresh-baked-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.bread-card {
    background: #fff;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    transform: translateY(0);
}

.bread-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.bread-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.bread-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.baked-time {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--color-accent);
    color: #fff;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.new-arrival .baked-time {
    animation: pulse 2s infinite;
}

.baked-time.past {
    background-color: rgba(93, 64, 55, 0.8);
}

.bread-info {
    padding: 25px;
}

.bread-info h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.bread-info p {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.daily-schedule {
    margin-top: 60px;
    background: rgba(255, 255, 255, 0.7);
    padding: 30px;
    border-radius: var(--border-radius-md);
    text-align: center;
}

.daily-schedule h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.schedule-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.schedule-tags .tag {
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--color-wood-main);
    border: 1px solid rgba(93, 64, 55, 0.2);
}

.schedule-note {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

/* Info Section */
.info-list {
    margin-top: 30px;
}

.info-item {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-icon {
    width: 40px;
    height: 40px;
    background-color: var(--color-cream);
    color: var(--color-wood-main);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-details dt {
    font-weight: 700;
    color: var(--color-wood-dark);
    margin-bottom: 5px;
}

.info-details dd {
    color: var(--color-text);
}

.map-container {
    height: 400px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

/* Reservation Section */
.res-desc {
    max-width: 700px;
    margin: 0 auto 40px;
}

.reservation-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.res-action-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    width: calc(50% - 15px);
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid transparent;
}

@media (max-width: 768px) {
    .res-action-card {
        width: 100%;
    }
}

.res-action-card:hover {
    transform: translateY(-5px);
}

.phone-card:hover {
    border-color: #e0f2f1;
    box-shadow: 0 15px 40px rgba(0, 150, 136, 0.1);
}

.insta-card:hover {
    border-color: #fce4ec;
    box-shadow: 0 15px 40px rgba(225, 48, 108, 0.1);
}

.res-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.phone-card .res-icon {
    background-color: #e0f2f1;
    color: #00897b;
}

.insta-card .res-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.res-action-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.res-number, .res-id {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-wood-dark);
    margin-bottom: 10px;
}

.res-note {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 25px;
    min-height: 40px;
}

.action-btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    width: 100%;
}

.phone-card .action-btn {
    background-color: #00897b;
    color: white;
}

.phone-card:hover .action-btn {
    background-color: #00796b;
}

.insta-card .action-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.insta-card:hover .action-btn {
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: var(--color-wood-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-concept {
    color: #bcaaa4;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.footer-social a:hover {
    background-color: var(--color-accent);
}

.copyright {
    font-size: 0.8rem;
    color: #8d6e63;
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 99;
}

@media (min-width: 769px) {
    .floating-actions {
        display: none;
    }
}

.fab-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.fab-btn.phone {
    background-color: #00897b;
}

.fab-btn.insta {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Intersection Observer Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Delay for grid items */
.fresh-baked-grid .bread-card:nth-child(1) { transition-delay: 0.1s; }
.fresh-baked-grid .bread-card:nth-child(2) { transition-delay: 0.2s; }
.fresh-baked-grid .bread-card:nth-child(3) { transition-delay: 0.3s; }
