/*
Theme Name: Stupina la Petre
Theme URI: https://stupinalapetre.ro/
Author: Stupina la Petre
Author URI: https://stupinalapetre.ro/
Description: Un tema WordPress modern pentru vânzarea produselor naturale ale stupiniei. Design rustic-modern cu paletă caldă.
Version: 1.0
License: GPL
Text Domain: stupina-la-petre
*/

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: #fff3e0;
    color: #5c3a21;
    line-height: 1.6;
}

a {
    color: #f25e1e;
    text-decoration: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background-color: #fff3e0;
    border-bottom: 3px solid #f7b32b;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(92, 58, 33, 0.1);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    color: #5c3a21;
    font-weight: bold;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: #5c3a21;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    background-color: #f7b32b;
    color: #fff;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f7b32b 0%, #f25e1e 100%);
    color: #fff;
    padding: 100px 20px;
    text-align: center;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 1200px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.primary-btn {
    background-color: #5c3a21;
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.primary-btn:hover {
    background-color: #7a4d2f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(92, 58, 33, 0.3);
}

/* Story Section */
.story {
    padding: 60px 20px;
    background-color: #fff;
    border-radius: 15px;
    margin: 40px auto;
    max-width: 1200px;
}

.story h2 {
    font-size: 36px;
    color: #5c3a21;
    margin-bottom: 20px;
    text-align: center;
}

.story p {
    font-size: 18px;
    line-height: 1.8;
    color: #5c3a21;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Categories Section */
.categories {
    padding: 60px 20px;
    background-color: #fff3e0;
}

.categories h2 {
    font-size: 36px;
    color: #5c3a21;
    margin-bottom: 40px;
    text-align: center;
}

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

.category-btn {
    background: linear-gradient(135deg, #f7b32b 0%, #f25e1e 100%);
    padding: 40px 30px;
    color: #fff;
    border-radius: 15px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: block;
    box-shadow: 0 4px 15px rgba(92, 58, 33, 0.2);
}

.category-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(92, 58, 33, 0.3);
}

/* Recommended Products */
.recommendations {
    padding: 60px 20px;
    background-color: #fff;
}

.recommendations h2 {
    font-size: 36px;
    color: #5c3a21;
    margin-bottom: 40px;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background-color: #fff3e0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(92, 58, 33, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(92, 58, 33, 0.2);
}

.product-image {
    width: 100%;
    height: 200px;
    background-color: #f7b32b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 48px;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 20px;
    color: #5c3a21;
    margin-bottom: 10px;
}

.product-info .price {
    font-size: 24px;
    color: #f25e1e;
    font-weight: bold;
    margin: 15px 0;
}

.product-info .buy-btn {
    background-color: #f25e1e;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    display: inline-block;
    font-weight: bold;
    transition: all 0.3s ease;
}

.product-info .buy-btn:hover {
    background-color: #e5541a;
}

/* Footer */
.site-footer {
    background-color: #5c3a21;
    color: #fff;
    padding: 40px 20px;
    margin-top: 60px;
}

.site-footer .container {
    text-align: center;
}

.site-footer p {
    margin: 10px 0;
}

.site-footer a {
    color: #f7b32b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }

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

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

@media (max-width: 480px) {
    .hero {
        padding: 60px 20px;
    }

    .hero-content h1 {
        font-size: 28px;
    }
}
