/* 
   Keabakes - Brand Identity & Styles
   Brand Colors:
   Deep Cocoa: #2b1208
   Chocolate: #4a2600
   Cream: #f4e8d8
   Peach: #f7d8bd
   Cookie: #f4a95f
   Wheat: #8f6d2d
   Berry: #b94952
   Sage: #7a8462
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Caveat:wght@400;700&family=Inter:wght@400;500;600&display=swap');

:root {
    --color-deep-cocoa: #2b1208;
    --color-chocolate: #4a2600;
    --color-cream: #f4e8d8;
    --color-peach: #f7d8bd;
    --color-cookie: #f4a95f;
    --color-wheat: #8f6d2d;
    --color-berry: #b94952;
    --color-sage: #7a8462;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-script: 'Caveat', cursive;
    --font-body: 'Inter', sans-serif;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-cream);
    color: var(--color-deep-cocoa);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

ul {
    list-style: none;
}

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

/* Header & Navigation */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--color-deep-cocoa);
    color: var(--color-cream);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-circle {
    width: 32px;
    height: 32px;
    background-color: var(--color-cream);
    color: var(--color-deep-cocoa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

nav ul {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-inquire {
    background-color: var(--color-peach);
    color: var(--color-deep-cocoa);
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
}

/* Hero Section */
.hero {
    background-color: var(--color-deep-cocoa);
    color: var(--color-cream);
    padding: 4rem 5% 2rem;
    text-align: left;
}

.hero-badge {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-cookie);
    margin-bottom: 1rem;
    display: block;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.25rem);
    max-width: 600px;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary {
    background-color: var(--color-cream);
    color: var(--color-deep-cocoa);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
}

.btn-secondary {
    border: 1px solid var(--color-cream);
    color: var(--color-cream);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
}

.hero-banner {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 2rem;
}

/* Stats Section */
.stats {
    padding: 4rem 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card h2 {
    font-size: 2.5rem;
    color: var(--color-berry);
    margin-bottom: 0.5rem;
}

.stat-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.stat-card p {
    font-size: 0.95rem;
    color: var(--color-chocolate);
    opacity: 0.8;
}

/* Product Section */
.products {
    padding: 4rem 5%;
}

.section-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.section-intro span {
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--color-wheat);
}

.section-intro h2 {
    font-size: 2.5rem;
    margin-top: 0.5rem;
}

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

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.product-img {
    aspect-ratio: 1/1;
    overflow: hidden;
}

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

.product-info {
    padding: 1.5rem;
}

.product-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-wheat);
    margin-bottom: 0.5rem;
    display: block;
}

.product-info h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.product-info p {
    font-size: 0.95rem;
    color: var(--color-chocolate);
}

/* Popups Section */
.popups {
    padding: 4rem 5%;
    background-color: var(--color-peach);
    text-align: center;
}

.announcement-block {
    max-width: 800px;
    margin: 0 auto;
}

.announcement-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    margin-top: 2rem;
}

.announcement-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.btn-instagram {
    display: inline-block;
    margin-top: 2rem;
    background-color: var(--color-deep-cocoa);
    color: var(--color-cream);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
}

/* Custom Order Form */
.custom-order {
    padding: 4rem 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.form-content span {
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--color-wheat);
    display: block;
    margin-bottom: 0.5rem;
}

.form-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.form-content p {
    margin-bottom: 2rem;
    color: var(--color-chocolate);
}

.form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-wheat);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

input, select, textarea {
    padding: 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    font-family: var(--font-body);
    background-color: #fafafa;
    transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--color-cookie);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(244, 169, 95, 0.1);
}

textarea {
    height: 120px;
    resize: vertical;
}

.btn-submit {
    background-color: var(--color-deep-cocoa);
    color: var(--color-cream);
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
}

/* Footer */
footer {
    background-color: var(--color-deep-cocoa);
    color: var(--color-cream);
    padding: 4rem 5% 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cottage-disclosure {
    max-width: 400px;
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 1.5rem;
    font-style: italic;
}

.footer-links h4 {
    margin-bottom: 1rem;
    color: var(--color-peach);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Menu Page Styles */
.menu-hero {
    background-color: var(--color-chocolate);
    color: var(--color-cream);
    padding: 6rem 5% 4rem;
    text-align: center;
}

.menu-hero span {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    display: block;
}

.menu-hero h1 {
    font-size: clamp(3rem, 10vw, 5rem);
}

.menu-grid {
    padding: 4rem 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.menu-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.menu-card .category {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--color-wheat);
    margin-bottom: 0.5rem;
    display: block;
}

.menu-card h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.menu-card .description {
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: var(--color-chocolate);
}

.price-list {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 1.5rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.price-item .price {
    color: var(--color-berry);
    font-weight: 700;
}

.ordering-note {
    padding: 6rem 5%;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.ordering-note h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.btn-inquire-large {
    display: inline-block;
    margin-top: 2rem;
    background-color: var(--color-deep-cocoa);
    color: var(--color-cream);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
    .custom-order {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero {
        text-align: center;
    }
    
    .hero h1, .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-btns {
        justify-content: center;
    }
}

@media (max-width: 520px) {
    header {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    .hero-btns {
        flex-direction: column;
    }
    
    .footer-top {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .menu-card {
        padding: 1.5rem;
    }
}
