/* Hero Section */
.hero {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 1;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    font-weight: 500;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    color: white;
}

/* Journey Section */
.journey {
    background-color: rgb(43, 59, 43);
    padding: 4rem 0;
    text-align: center;
}

.journey-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.journey-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.journey-subtitle {
    font-size: 1.1rem;
    color: #a0d8a0;
    max-width: 600px;
    margin: 0 auto;
}

/* Cards Section */
.cards-section {
    background-color: rgb(43, 59, 43);
    padding: 0 0 4rem 0;
}

.cards-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 0;
}

.card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.card-content {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.card-date {
    color: #718096;
    font-size: 0.875rem;
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

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

/* Most Selled Products Section */
.most-selled-products {
    background-color: white;
    padding: 4rem 0;
}

.most-selled-products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.most-selled-products-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: rgb(43, 59, 43);
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.most-selled-products-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-family: Georgia, serif;
    font-weight: 300;
}

.products-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d5a2d;
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .journey-title,
    .most-selled-products-title {
        font-size: 2.2rem;
    }
    
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 180px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 0 1.5rem;
    }
    
    .journey {
        padding: 3rem 0;
    }
    
    .journey-title {
        font-size: 2rem;
    }
    
    .journey-subtitle {
        font-size: 1rem;
    }
    
    .journey-container {
        padding: 0 1.5rem;
    }
    
    .cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .card-image {
        height: 180px;
    }
    
    .card-content {
        padding: 1.25rem;
    }
    
    .most-selled-products {
        padding: 3rem 0;
    }
    
    .most-selled-products-title {
        font-size: 2rem;
    }
    
    .most-selled-products-subtitle {
        font-size: 1rem;
    }
    
    .most-selled-products-container {
        padding: 0 1.5rem;
        margin-bottom: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 160px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .journey {
        padding: 2.5rem 0;
    }
    
    .journey-title {
        font-size: 1.75rem;
    }
    
    .journey-subtitle {
        font-size: 0.9rem;
    }
    
    .journey-container {
        padding: 0 1rem;
    }
    
    .cards-container {
        padding: 0 1rem;
        gap: 1rem;
    }
    
    .card-image {
        height: 160px;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .most-selled-products {
        padding: 2.5rem 0;
    }
    
    .most-selled-products-title {
        font-size: 1.75rem;
    }
    
    .most-selled-products-subtitle {
        font-size: 0.9rem;
    }
    
    .most-selled-products-container {
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }
    
    .products-grid {
        padding: 0 1rem;
        gap: 1rem;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .product-name {
        font-size: 1rem;
    }
    
    .product-price {
        font-size: 1.1rem;
    }
} 