/* Color Palette */
:root {
    --coffee-brown: #3C2F2F;      /* Deep, rich brown */
    --espresso-cream: #E9E1D2;    /* Creamy off-white */
    --primary-color: #A0522D;     /* Sienna - accent color */
    --dark-background: #252525;   /* Near-black for footer/features background */
    --text-light: #F9F9F9;
    --text-dark: #333;
    --section-bg: #F5F5F5;
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fff;
    scroll-behavior: smooth;
}

h1, h2, h3, h4 {
    font-family: 'Merriweather', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header & Navigation --- */
.fixed-header {
    background: var(--coffee-brown);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-size: 1.6em;
    color: var(--espresso-cream);
    letter-spacing: 1px;
}
.logo-fix {
    color: var(--primary-color);
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    font-weight: 700;
    transition: color 0.3s, background-color 0.3s;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* --- Utility & Buttons --- */
.section-padding {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background-color: #7B3F00; /* Darker brown */
    transform: translateY(-2px);
}

/* --- Hero Section --- */
.hero-improved {
    /* Use a high-quality, coffee-related image */
    background: url('hero-1600x.png') center center / cover no-repeat;
    height: 550px;
    position: relative;
    color: var(--text-light);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for better text readability */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-improved h2 {
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-improved p {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Key Features Section --- */
.features-section {
    background: var(--dark-background);
    color: var(--text-light);
    padding: 40px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.feature-item i {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 1.2em;
    margin-bottom: 5px;
}

/* --- Services Section --- */
.services-improved {
    background: var(--section-bg);
    text-align: center;
}

.services-improved h3 {
    font-size: 2.5em;
    color: var(--coffee-brown);
    margin-bottom: 50px;
}

.service-list {
    display: flex;
    justify-content: space-around;
    gap: 30px;
}

.service-list article {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.service-list article h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3em;
}

.service-list article i {
    margin-right: 10px;
}

/* --- Contact Section --- */
.contact-improved {
    background: var(--coffee-brown);
    color: var(--text-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.contact-text h3 {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-text p {
    margin-bottom: 15px;
}

.contact-details p {
    font-size: 1.1em;
    margin: 10px 0;
}

.contact-details i {
    color: var(--espresso-cream);
    margin-right: 10px;
}

.contact-details a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: var(--primary-color);
}

/* Contact Form Styling */
.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 15px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    font-size: 1em;
    background: rgba(0, 0, 0, 0.2);
    color: var(--text-light);
    box-shadow: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group textarea {
    resize: vertical;
}

.status-message {
    margin-top: 15px;
    text-align: center;
    font-weight: bold;
    color: var(--espresso-cream);
}

/* --- Footer --- */
.footer-improved {
    background: var(--dark-background);
    color: #999;
    text-align: center;
    padding: 25px 0;
    font-size: 0.9em;
    border-top: 5px solid var(--primary-color);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .service-list {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        text-align: center;
    }
    nav ul {
        margin-top: 10px;
        justify-content: center;
    }
    .hero-improved h2 {
        font-size: 2.5em;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
}