/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #2D2424;
    background-color: #FFFFFF;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

.btn {
    display: inline-block;
    background-color: #6F4E37;
    color: #FFFFFF;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #6F4E37;
}

.btn:hover {
    background-color: #5A3E2C;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #6F4E37;
}

.btn-outline:hover {
    background-color: #6F4E37;
    color: #FFFFFF;
}

/* ===== HEADER ===== */
header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    font-size: 2rem;
    color: #6F4E37;
}

.logo h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.tagline {
    font-size: 0.8rem;
    color: #A2C579;
    font-style: italic;
    margin-left: 10px;
}

/* ===== NAVIGATION ===== */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li a {
    font-weight: 600;
    padding: 5px 0;
    position: relative;
}

.nav-menu li a.active {
    color: #6F4E37;
}

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #6F4E37;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6F4E37;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: #FFFFFF;
    text-align: center;
    padding: 100px 20px;
    margin-bottom: 50px;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* ===== WELCOME SECTION ===== */
.welcome {
    text-align: center;
    padding: 50px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.welcome h2 {
    color: #6F4E37;
    font-size: 2rem;
}

/* ===== FEATURED ITEMS ===== */
.featured {
    padding: 50px 20px;
    background-color: #F9F7F3;
    border-radius: 10px;
    margin: 30px 0;
}

.featured h2 {
    text-align: center;
    color: #6F4E37;
    margin-bottom: 40px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.featured-item {
    text-align: center;
    padding: 30px 20px;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.featured-item:hover {
    transform: translateY(-10px);
}

.item-icon {
    font-size: 2.5rem;
    color: #A2C579;
    margin-bottom: 20px;
}

/* ===== INFO SECTION ===== */
.info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 50px 20px;
    align-items: center;
}

.info-content i {
    color: #6F4E37;
    margin-right: 10px;
}

.info-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

/* ===== FOOTER ===== */
footer {
    background-color: #6F4E37;
    color: #E3DAC9;
    margin-top: 50px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 50px 20px;
}

.footer-info h3 i {
    margin-right: 10px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: #A2C579;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #E3DAC9;
    color: #6F4E37;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #A2C579;
    color: #FFFFFF;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #5A3E2C;
    font-size: 0.9rem;
    color: #E3DAC9;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: #FFFFFF;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        padding: 20px 0;
        gap: 0;
    }
    
    .nav-menu.show {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .info-section {
        grid-template-columns: 1fr;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo {
        flex-direction: column;
        text-align: center;
    }
}
/* ===== BACKGROUND IMAGE SPECIALTIES ===== */
.featured-item.bg-item {
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    transition: all 0.4s ease;
}

.featured-item.bg-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.featured-content {
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 25px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.featured-content h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.featured-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 0;
}

/* Background Images */
.coffee-bg {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                      url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.pastry-bg {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                      url('https://images.unsplash.com/photo-1555507036-ab794f27d2e9?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.vegan-bg {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                      url('https://images.unsplash.com/photo-1484723091739-30a097e8f929?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

/* Hover effect for images */
.featured-item.bg-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(111, 79, 55, 0.2); /* Coffee brown overlay */
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.featured-item.bg-item:hover::before {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .featured-item.bg-item {
        height: 250px;
    }
    
    .featured-content {
        padding: 20px;
    }
    
    .featured-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .featured-item.bg-item {
        height: 220px;
    }
    
    .featured-content {
        padding: 15px;
    }
    
    .featured-content h3 {
        font-size: 1.2rem;
    }
}
/* ===== ABOUT PAGE STYLES ===== */
.about-header {
    text-align: center;
    padding: 50px 20px 30px;
    max-width: 800px;
    margin: 0 auto;
}

.about-header h2 {
    color: #6F4E37;
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.about-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #A2C579;
}

.about-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-top: 30px;
}

/* About Sections */
/* ===== CONSISTENT ABOUT PAGE STYLING ===== */

/* All sections use the same class */
.about-section {
    margin-bottom: 60px;
    text-align: left;
    max-width: 800px;
    margin-left: 0;
    padding: 0 20px;
}

/* Consistent heading styles for ALL sections */
.about-section h2,
.about-section h3 {
    color: #6F4E37;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    text-align: left;
    width: 100%;
    display: block;
}

/* Consistent underline for ALL headings */
.about-section h2::after,
.about-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #A2C579; /* Same green color for all */
}

/* Story text styles */
.story-content {
    padding: 10px 0;
}

.story-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: #6F4E37;
    line-height: 1.6;
    margin: 30px 0;
    text-align: left;
    position: relative;
    padding-left: 30px;
    border-left: 3px solid #A2C579;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    text-align: left;
}

/* Mission and Values text */
.about-section > p:not(.story-quote):not(.story-text) {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    text-align: left;
}

/* Values grid (if you have it) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-section {
        padding: 0 15px;
    }
    
    .about-section h2,
    .about-section h3 {
        font-size: 1.8rem;
    }
    
    .story-quote {
        font-size: 1.2rem;
        padding-left: 20px;
    }
    
    .story-text,
    .about-section > p {
        font-size: 1rem;
    }
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.value-item {
    background: #F9F7F3;
    padding: 25px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #A2C579;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 2rem;
    color: #6F4E37;
    margin-bottom: 15px;
}

.value-content h4 {
    color: #2D2424;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.value-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* About Image Section */
.about-image {
    text-align: center;
    margin-top: 60px;
}

.about-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.image-caption {
    margin-top: 15px;
    font-style: italic;
    color: #777;
    font-size: 0.9rem;
}

/* Development Credit */
.development-credit {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #E3DAC9;
    text-align: center;
}

.development-credit hr {
    margin-bottom: 20px;
    border: none;
    border-top: 1px dashed #E3DAC9;
}

.development-credit p {
    color: #777;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-header h2 {
        font-size: 2rem;
    }
    
    .about-section h3 {
        font-size: 1.7rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .value-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .about-header {
        padding: 30px 15px;
    }
    
    .about-header h2 {
        font-size: 1.8rem;
    }
    
    .about-intro {
        font-size: 1.1rem;
    }
}
