/* 
 * Main Styles for bocaja-muxogo website
 * Colors:
 * - Green (primary): #A8D741
 * - Purple (accent): #9B59B6
 * - Light background: #F9FAFB
 * - Brown (wood): #6B4E3D
 * - Dark gray (text): #2C3E50
 */

/* === Reset and Base Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', 'Arial', sans-serif;
    color: #2C3E50;
    background-color: #F9FAFB;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: #6B4E3D;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #9B59B6;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    color: #2C3E50;
}

.section-title::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 3px;
    background: #A8D741;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* === Header === */
header {
    background-color: rgba(249, 250, 251, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
}

/* === Navigation === */
.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #A8D741;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.burger-menu {
    display: none;
    cursor: pointer;
}

.burger-menu div {
    width: 25px;
    height: 3px;
    background-color: #2C3E50;
    margin: 5px;
    transition: all 0.3s ease;
}

/* === Hero Section === */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(249, 250, 251, 0.8), rgba(249, 250, 251, 0.8)), url('img/puz4fA.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 70px;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    color: #2C3E50;
    margin-bottom: 20px;
    animation: fadeInUp 1.5s ease;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1.5s ease 0.3s both;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #A8D741;
    color: white;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(168, 215, 65, 0.4);
    animation: fadeInUp 1.5s ease 0.6s both;
}

.btn:hover {
    background: #9B59B6;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(155, 89, 182, 0.5);
    color: white;
}

/* === About Section === */
.about {
    background-color: white;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(3deg);
    transition: transform 0.5s ease;
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    margin-bottom: 20px;
    color: #2C3E50;
}

.about-text p {
    margin-bottom: 15px;
}

/* === Benefits Section === */
.benefits {
    background-color: #F9FAFB;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F9FAFB;
    border-radius: 50%;
    color: #A8D741;
}

.benefit-card h3 {
    margin-bottom: 15px;
    color: #2C3E50;
}

/* === Products Section === */
.products {
    background-color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: #F9FAFB;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 10px;
    color: #2C3E50;
}

.product-info p {
    margin-bottom: 15px;
    color: #2C3E50;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #9B59B6;
    margin-bottom: 15px;
}

/* === Testimonials Section === */
.testimonials {
    background: linear-gradient(rgba(249, 250, 251, 0.9), rgba(249, 250, 251, 0.9)), url('img/JVOVR3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-card::before {
    content: """;
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 4rem;
    color: rgba(168, 215, 65, 0.2);
    font-family: serif;
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    background-size: cover;
    background-position: center;
}

.author-info h4 {
    margin-bottom: 5px;
    color: #2C3E50;
}

.author-info p {
    color: #6B4E3D;
    font-size: 0.9rem;
}

/* === Order Form Section === */
.order-form {
    background-color: white;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #F9FAFB;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2C3E50;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: #A8D741;
    outline: none;
    box-shadow: 0 0 0 3px rgba(168, 215, 65, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    accent-color: #A8D741;
}

.tea-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.tea-option {
    background: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tea-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tea-option input[type="checkbox"] {
    accent-color: #A8D741;
    margin-right: 10px;
}

.tea-price {
    font-weight: bold;
    color: #9B59B6;
    float: right;
}

/* === Info Block Section === */
.info-block {
    background: linear-gradient(rgba(107, 78, 61, 0.8), rgba(107, 78, 61, 0.8)), url('img/wTdJCg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.info-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.info-content h2 {
    color: white;
}

.info-content p {
    margin-bottom: 30px;
}

/* === FAQ Section === */
.faq {
    background-color: #F9FAFB;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    margin-bottom: 15px;
    color: #2C3E50;
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item h3::after {
    content: '+';
    font-size: 1.5rem;
    color: #A8D741;
}

.faq-item:focus-within h3::after,
.faq-item:active h3::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item:focus-within .faq-answer,
.faq-item:active .faq-answer {
    max-height: 500px;
}

/* === Footer === */
footer {
    background-color: #2C3E50;
    color: white;
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: #ddd;
    font-size: 0.9rem;
}

.footer-links h4 {
    margin-bottom: 20px;
    color: white;
    position: relative;
    display: inline-block;
}

.footer-links h4::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background: #A8D741;
    bottom: -10px;
    left: 0;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ddd;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #A8D741;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #ddd;
}

.footer-contact p i {
    margin-right: 10px;
    color: #A8D741;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #aaa;
}

/* === Cookie Popup === */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(5px);
}

.cookie-popup p {
    margin-bottom: 15px;
}

/* === Animations === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === Media Queries === */
@media (max-width: 992px) {
    .section {
        padding: 50px 0;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image, .about-text {
        flex: 100%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: #F9FAFB;
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: right 0.5s ease;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 50px 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 20px 0;
    }
    
    .burger-menu {
        display: block;
    }
    
    .burger-menu.active div:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .burger-menu.active div:nth-child(2) {
        opacity: 0;
    }
    
    .burger-menu.active div:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .tea-selection {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
} 