/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #2c1810; /* Color café oscuro */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #1a1a1a; /* Negro */
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #8b7355; /* Color café claro */
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c1810, #4a3728); /* Gradiente café */
    padding: 120px 0 80px;
    margin-top: 70px;
}

.hero-content {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 3rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #d4c4a8;
}

.hero-values {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.value-item {
    background-color: #6b5b47; /* Verde oliva oscuro */
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

.cta-button {
    background-color: #8b7355; /* Café claro */
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #6b5b47;
}

.hero-image {
    flex: 1;
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Featured Product */
.featured-product {
    background-color: #1a1a1a; /* Negro */
    padding: 80px 0;
}

.featured-product h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.product-showcase {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.product-image {
    flex: 1;
}

.product-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.product-info {
    flex: 1;
}

.product-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #8b7355; /* Café claro */
}

.product-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: #d4c4a8;
}

.tasting-notes h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.note {
    background-color: #6b5b47; /* Verde oliva */
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.product-details {
    margin: 2rem 0;
}

.product-details p {
    margin-bottom: 0.5rem;
    color: #d4c4a8;
}

.product-sizes {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.size-option {
    background-color: #2c1810; /* Café oscuro */
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #6b5b47;
}

.size {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #8b7355; /* Café claro */
}

/* Products Grid */
.products-grid {
    background-color: #2c1810; /* Café oscuro */
    padding: 80px 0;
}

.products-grid h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: #1a1a1a; /* Negro */
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #8b7355; /* Café claro */
}

.flavor-notes {
    color: #d4c4a8;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.roast-level {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.card-content .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #8b7355; /* Café claro */
}

/* Our Story */
.our-story {
    background-color: #1a1a1a; /* Negro */
    padding: 80px 0;
}

.story-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #8b7355; /* Café claro */
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #d4c4a8;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

/* Stats Section */
.stats-section {
    background-color: #6b5b47; /* Verde oliva */
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    color: #ffffff;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Coffee Process */
.coffee-process {
    background-color: #2c1810; /* Café oscuro */
    padding: 80px 0;
}

.coffee-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background-color: #1a1a1a; /* Negro */
    border-radius: 10px;
}

.step-number {
    background-color: #8b7355; /* Café claro */
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #8b7355; /* Café claro */
}

.step p {
    color: #d4c4a8;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background-color: #1a1a1a; /* Negro */
    padding: 80px 0;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.contact-content {
    display: flex;
    gap: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #8b7355; /* Café claro */
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #d4c4a8;
}

.contact-form {
    flex: 1;
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #8b7355; /* Café claro */
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #6b5b47;
    border-radius: 5px;
    background-color: #2c1810; /* Café oscuro */
    color: #ffffff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form button {
    background-color: #8b7355; /* Café claro */
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #6b5b47;
}

/* Footer */
.footer {
    background-color: #1a1a1a; /* Negro */
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-logo p,
.footer-info p,
.footer-about p {
    color: #d4c4a8;
    margin-bottom: 0.5rem;
}

.footer-info h4,
.footer-about h4 {
    color: #8b7355; /* Café claro */
    margin-bottom: 1rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .product-showcase {
        flex-direction: column;
    }
    
    .story-content {
        flex-direction: column;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}