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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #fff;
    color: #222;
}

a {
    text-decoration: none;
    color: inherit;
}

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

main {
    width: 100%;
}

/* Header Styles */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    padding: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand img {
    height: 50px;
    width: auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-text span {
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.site-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.site-nav a {
    margin: 0 15px;
    color: white;
    font-size: 18px;
}

.site-nav a:hover,
.site-nav a.active {
    color: #ff5722;
}

/* Hero Section Styles */
.hero {
    background-image: url('../images/coffeebg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    position: relative;
}

.hero-home {
    background-image: url('../images/coffeebg.jpg');
    background-size: cover;
    background-position: center 100%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    color: white;
}

.hero p,
.hero-copy {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
}

.hero-actions .btn {
    display: inline-block;
    padding: 12px 25px;
    margin: 10px;
    color: white;
    background-color: #ff5722;
    border-radius: 5px;
}

.hero-actions .btn-secondary {
    background-color: transparent;
    border: 2px solid white;
}

.hero-actions .btn:hover {
    opacity: 0.8;
}

/* General Page Hero */
.page-hero {
    padding: 80px 20px 50px;
    text-align: center;
    background-color: #f4f4f4;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #222;
}

.page-hero p {
    font-size: 1.2rem;
    color: #555;
}

.eyebrow {
    color: #ff5722;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

/* Shared Section Styles */
.section {
    padding: 60px 20px;
}

.shell {
    max-width: 1200px;
    margin: 0 auto;
}

.section-story,
.section-values,
.section-feature {
    padding: 60px 20px;
}

.section-heading {
    margin-bottom: 30px;
}

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

/* About / story style sections */
.split-layout {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.split-layout > * {
    flex: 1 1 400px;
}

.image-card img,
.wide-image-card img,
.large-image-card img {
    width: 100%;
    border-radius: 8px;
}

.content-card h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #222;
}

.content-card p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 15px;
}

/* Values Section Styles */
.section-values {
    text-align: center;
    background-color: #fff;
}

.section-values h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #222;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}

.value-card {
    padding: 20px;
    background-color: #eee;
    border-radius: 5px;
}

.value-card h3 {
    font-size: 1.2rem;
    color: #222;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    color: white;
    background-color: #ff5722;
    border-radius: 5px;
}

.btn:hover {
    opacity: 0.8;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

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

.contact-form {
    width: 100%;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #222;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    padding: 12px;
    border: 1px solid #ccc;
    font: inherit;
}

.contact-form button {
    border: none;
    cursor: pointer;
}

/* Callout style */
.callout-panel {
    background-color: #ff5722;
    color: white;
    text-align: center;
    padding: 50px 20px;
}

.callout-panel h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.callout-panel p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: white;
}

.callout-panel .btn {
    background-color: #fff;
    color: #ff5722;
    font-weight: bold;
}

/* Optional accent card */
.accent-card {
    background-color: #f4f4f4;
    padding: 30px;
    border-radius: 8px;
}

/* Footer if you add one later */
.footer {
    background-color: #222;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer .social-links a {
    color: white;
    margin: 0 10px;
    font-size: 1.2rem;
}

.footer .footer-nav a {
    display: block;
    color: white;
    margin: 10px 0;
    font-size: 1rem;
}

/* Mobile */
@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-nav {
        width: 100%;
    }

    .site-nav a {
        margin: 8px 12px 8px 0;
        display: inline-block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p,
    .hero-copy {
        font-size: 1.1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .content-card h2,
    .section-values h2,
    .callout-panel h2,
    .page-hero h1 {
        font-size: 2rem;
    }
}
