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

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #2C2C2C;
    background-color: #FAFAFA;
}

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

/* Header */
.header {
    background: #FAFAFA;
    padding: 20px 0;
    border-bottom: 2px solid #7CB342;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 60px;
    height: 60px;
}

.brand-name {
    font-size: 2rem;
    font-weight: 700;
    color: #2C2C2C;
    margin: 0;
}

.brand-tagline {
    color: #FF6B35;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2C2C2C 0%, #404040 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    width: 24px;
    height: 24px;
}

.feature-item span {
    font-weight: 500;
}

.hero-image {
    margin-top: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-main-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2C2C2C;
}

.about p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.stat {
    text-align: center;
    padding: 30px;
    background: #F8F8F8;
    border-radius: 12px;
    border-left: 4px solid #FF6B35;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #FF6B35;
}

.stat-label {
    color: #666;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #F8F8F8;
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #2C2C2C;
}

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

.service-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-top: 4px solid #7CB342;
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2C2C2C;
}

.service-card p {
    color: #666;
}

/* Recipes Section */
.recipes {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.recipes h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #2C2C2C;
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.recipe-card {
    background: #F8F8F8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: left;
}

.recipe-image {
    height: 200px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

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

.recipe-content {
    padding: 30px;
}

.recipe-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2C2C2C;
}

.recipe-content p {
    margin-bottom: 20px;
    color: #666;
}

.recipe-features {
    list-style: none;
}

.recipe-features li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    color: #666;
}

.recipe-features li:before {
    content: "•";
    color: #FF6B35;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Techniques Section */
.techniques {
    padding: 80px 0;
    background: #F8F8F8;
    text-align: center;
}

.techniques h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #2C2C2C;
}

.techniques-list {
    max-width: 800px;
    margin: 0 auto;
}

.technique-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: white;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #7CB342;
    text-align: left;
}

.technique-icon svg {
    width: 48px;
    height: 48px;
}

.technique-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2C2C2C;
}

.technique-content p {
    color: #666;
}

/* Gear Section */
.gear {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.gear h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2C2C2C;
}

.gear-intro {
    font-size: 1.2rem;
    margin-bottom: 60px;
    color: #666;
}

.gear-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

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

.gear-image {
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.gear-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: 20px;
}

.gear-svg {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
}

.product-svg {
    width: 100%;
    height: 180px;
    padding: 20px;
    background: #F8F8F8;
    border-radius: 8px 8px 0 0;
}

.gear-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2C2C2C;
}

.gear-item p {
    color: #666;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: #F8F8F8;
    text-align: center;
}

.products h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #2C2C2C;
}

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

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-top: 4px solid #FF6B35;
    text-align: left;
}

.product-image {
    height: 180px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

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

.product-content {
    padding: 30px;
}

.product-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2C2C2C;
}

.product-content p {
    margin-bottom: 20px;
    color: #666;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 20px;
}

.cta-button {
    background: #FF6B35;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.cta-button:hover {
    background: #E55A2B;
    transform: translateY(-2px);
}

/* Contacts Section */
.contacts {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.contacts h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #2C2C2C;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: #F8F8F8;
    border-radius: 12px;
    border-left: 4px solid #7CB342;
    text-align: left;
}

.contact-icon {
    width: 32px;
    height: 32px;
    margin-top: 5px;
}

.contact-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2C2C2C;
}

.contact-item p {
    color: #666;
}

/* Footer */
.footer {
    background: #2C2C2C;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

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

.footer-logo {
    width: 50px;
    height: 50px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.footer-brand p {
    color: #FF6B35;
    font-size: 0.9rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #FF6B35;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #CCC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #FF6B35;
}

.footer-bottom {
    border-top: 1px solid #404040;
    padding-top: 20px;
    text-align: center;
    color: #CCC;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
}

.close:hover {
    color: #FF6B35;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2C2C2C;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B35;
}

.form-group input[readonly] {
    background: #F5F5F5;
    color: #666;
}

#orderForm button[type="submit"] {
    background: #FF6B35;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

#orderForm button[type="submit"]:hover {
    background: #E55A2B;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .recipes-grid {
        grid-template-columns: 1fr;
    }
    
    .technique-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .logo-section {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .brand-name {
        font-size: 1.6rem;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .services,
    .about,
    .recipes,
    .techniques,
    .gear,
    .products,
    .contacts {
        padding: 60px 0;
    }
    
    h2 {
        font-size: 2rem !important;
    }
}