/* 
* Zidato-Donute - Tea Website
* Color Palette:
* - Background: #2a5d57 (emerald)
* - Accents: #ff914d (orange neon)
* - Headings: #b8ffe8 (soft mint)
* - Text: #0e0e0e (almost black)
* - Buttons: gradient from #fbd786 to #f7797d
*/

/* ------------ Reset & Base Styles ------------ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%; /* 1rem = 10px */
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #0e0e0e;
    background-color: #2a5d57;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ------------ Typography ------------ */
h1, h2, h3, h4, h5, h6 {
    color: #b8ffe8;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

h1 {
    font-size: 4.2rem;
}

h2 {
    font-size: 3.6rem;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #fbd786, #f7797d);
    border-radius: 2px;
}

h3 {
    font-size: 2.4rem;
}

p {
    margin-bottom: 1.5rem;
}

section {
    padding: 8rem 0;
}

/* ------------ Buttons ------------ */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, #fbd786, #f7797d);
    color: #0e0e0e;
    box-shadow: 0 4px 15px rgba(251, 215, 134, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(251, 215, 134, 0.6);
}

.btn-primary:active {
    transform: translateY(1px);
}

.btn-secondary {
    background: transparent;
    color: #b8ffe8;
    border: 2px solid #b8ffe8;
}

.btn-secondary:hover {
    background: rgba(184, 255, 232, 0.1);
    transform: translateY(-3px);
}

.btn-nav {
    background: linear-gradient(45deg, #fbd786, #f7797d);
    color: #0e0e0e;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
}

.btn-cookie {
    background: #b8ffe8;
    color: #2a5d57;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

.btn-cookie:hover {
    background: #a6ebda;
}

/* ------------ Header & Navigation ------------ */
.site-header {
    background-color: rgba(42, 93, 87, 0.95);
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    color: #b8ffe8;
    font-weight: 700;
    font-size: 2.4rem;
}

.logo-svg {
    width: 50px;
    height: 50px;
    margin-right: 1rem;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: #b8ffe8;
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(to right, #fbd786, #f7797d);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* ------------ Hero Section ------------ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 8rem;
    background: linear-gradient(135deg, rgba(42, 93, 87, 0.95), rgba(42, 93, 87, 0.7)), url('img/qRvMsq.jpg') no-repeat center/cover;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 145, 77, 0.2), transparent 60%);
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-section h1 {
    font-size: 5.6rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

.hero-section p {
    font-size: 2.2rem;
    color: #b8ffe8;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.2s;
    animation-fill-mode: both;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-section .btn-primary {
    animation: fadeInUp 1s ease-out 0.4s;
    animation-fill-mode: both;
}

/* ------------ About Section ------------ */
.about-section {
    background-color: #fff;
    color: #0e0e0e;
    position: relative;
    overflow: hidden;
}

.about-section h2 {
    color: #2a5d57;
    text-align: center;
}

.about-section h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    margin-top: 5rem;
}

.benefit-card {
    background: #f9f9f9;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: skewY(-2deg);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: skewY(-2deg) translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
    color: #2a5d57;
}

.icon-wrapper {
    width: 6rem;
    height: 6rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2a5d57;
    border-radius: 50%;
}

.icon {
    width: 3rem;
    height: 3rem;
    fill: #b8ffe8;
}

/* ------------ Reviews Section ------------ */
.reviews-section {
    background-color: #2a5d57;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 145, 77, 0.2), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 3rem;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.stars {
    color: #fbd786;
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.reviewer {
    font-style: italic;
    color: #b8ffe8;
    margin-top: 2rem;
}

/* ------------ Products Section ------------ */
.products-section {
    background-color: #fff;
    color: #0e0e0e;
    text-align: center;
}

.products-section h2 {
    color: #2a5d57;
}

.products-section h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    margin-top: 5rem;
}

.product-card {
    background: #f9f9f9;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card h3 {
    color: #2a5d57;
    padding: 2rem 2rem 0;
}

.product-card p {
    padding: 0 2rem;
}

.price {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ff914d;
    margin: 1.5rem 0;
}

.product-card .btn-secondary {
    margin-bottom: 2.5rem;
}

/* ------------ Results Section ------------ */
.results-section {
    background-color: #2a5d57;
    position: relative;
    overflow: hidden;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin: 5rem 0;
}

.before, .after {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 3rem;
    color: #fff;
    position: relative;
    transition: all 0.3s ease;
}

.before::before, .after::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 145, 77, 0.1) 100%);
    border-radius: 1rem;
    z-index: -1;
}

.before:hover, .after:hover {
    transform: translateY(-5px);
}

.before h3, .after h3 {
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.before h3::after, .after h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #fbd786, #f7797d);
}

.before ul, .after ul {
    list-style: none;
}

.before li, .after li {
    margin-bottom: 1rem;
    padding-left: 2.5rem;
    position: relative;
}

.before li::before, .after li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.8rem;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
}

.before li::before {
    background: #ff914d;
}

.after li::before {
    background: #b8ffe8;
}

.results-image {
    border-radius: 1rem;
    margin-top: 4rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.results-image:hover {
    transform: scale(1.02);
}

/* ------------ Order Section ------------ */
.order-section {
    background-color: #fff;
    color: #0e0e0e;
    text-align: center;
}

.order-section h2 {
    color: #2a5d57;
}

.order-section h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.order-form {
    max-width: 600px;
    margin: 5rem auto 0;
    background: #f9f9f9;
    padding: 4rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 2.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: #2a5d57;
    font-weight: 600;
}

.form-group input, 
.form-group select {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.form-group input:focus, 
.form-group select:focus {
    border-color: #2a5d57;
    outline: none;
    box-shadow: 0 0 0 3px rgba(42, 93, 87, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 1rem;
    margin-top: 0.5rem;
}

.checkbox-group label {
    display: inline;
    color: #0e0e0e;
    font-weight: normal;
}

.checkbox-group a {
    color: #2a5d57;
    text-decoration: underline;
}

.order-form .btn-primary {
    margin-top: 1rem;
    width: 100%;
}

/* ------------ FAQ Section ------------ */
.faq-section {
    background-color: #2a5d57;
    position: relative;
    overflow: hidden;
}

.accordion {
    max-width: 800px;
    margin: 5rem auto 0;
}

.accordion-item {
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.accordion-toggle {
    display: none;
}

.accordion-title {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: #b8ffe8;
    padding: 1.5rem 2rem;
    display: block;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    transition: all 0.3s ease;
}

.accordion-title::after {
    content: '+';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.4rem;
    transition: all 0.3s ease;
}

.accordion-toggle:checked + .accordion-title {
    background: rgba(255, 255, 255, 0.1);
}

.accordion-toggle:checked + .accordion-title::after {
    content: '-';
}

.accordion-content {
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-toggle:checked ~ .accordion-content {
    max-height: 500px;
}

.accordion-content p {
    padding: 2rem;
}

/* ------------ About Company Section ------------ */
.about-company-section {
    background-color: #fff;
    color: #0e0e0e;
    text-align: center;
    position: relative;
}

.about-company-section h2 {
    color: #2a5d57;
}

.about-company-section h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.company-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.info-item .icon {
    width: 2.4rem;
    height: 2.4rem;
    fill: #2a5d57;
}

/* ------------ Footer ------------ */
.site-footer {
    background-color: #1e423e;
    color: #fff;
    padding: 6rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo p {
    margin-top: 2rem;
    opacity: 0.8;
}

.footer-links h3,
.footer-contact h3,
.footer-legal h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.footer-links ul,
.footer-contact ul,
.footer-legal ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: #ff914d;
}

.footer-contact li {
    opacity: 0.8;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 1.4rem;
    opacity: 0.6;
}

/* ------------ Cookie Popup ------------ */
.cookie-popup {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: #1e423e;
    color: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    z-index: 1000;
    animation: slideUp 0.5s ease-out forwards;
}

.cookie-popup p {
    margin-bottom: 1.5rem;
}

.cookie-popup a {
    color: #b8ffe8;
    text-decoration: underline;
}

/* ------------ Policy Pages ------------ */
.policy-page {
    padding: 12rem 0 6rem;
    background-color: #fff;
    color: #0e0e0e;
}

.policy-page h1 {
    color: #2a5d57;
    text-align: center;
    margin-bottom: 4rem;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    color: #2a5d57;
    margin-top: 4rem;
}

.policy-content p, 
.policy-content ul,
.policy-content table {
    margin-bottom: 2rem;
}

.policy-content ul {
    padding-left: 2rem;
    list-style-type: disc;
}

.policy-content li {
    margin-bottom: 0.8rem;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table th, 
.cookies-table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookies-table th {
    background-color: #f3f3f3;
    font-weight: 600;
    color: #2a5d57;
}

/* ------------ Thank You Page ------------ */
.thank-you-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2a5d57;
    padding: 0;
    margin: 0;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out;
    padding: 4rem;
    margin: 0 auto;
}

.thank-you-icon {
    width: 10rem;
    height: 10rem;
    margin: 0 auto 3rem;
}

.thank-you-content h1 {
    margin-bottom: 2rem;
}

.thank-you-content p {
    color: #fff;
    margin-bottom: 1.5rem;
}

.thank-you-content .btn-primary {
    margin-top: 3rem;
}

/* ------------ Animations ------------ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* ------------ Responsive Styles ------------ */
@media (max-width: 992px) {
    html {
        font-size: 60%;
    }
    
    .hero-section h1 {
        font-size: 4.8rem;
    }
    
    .benefits-grid,
    .reviews-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 58%;
    }
    
    .hero-section h1 {
        font-size: 4.2rem;
    }
    
    .nav-toggle-label {
        display: block;
        position: relative;
    }
    
    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        display: block;
        width: 2.5rem;
        height: 2px;
        background-color: #b8ffe8;
        position: relative;
        transition: all 0.3s ease;
    }
    
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        content: '';
        position: absolute;
    }
    
    .nav-toggle-label span::before {
        bottom: 8px;
    }
    
    .nav-toggle-label span::after {
        top: 8px;
    }
    
    .nav-toggle:checked ~ .nav-toggle-label span {
        transform: rotate(45deg);
    }
    
    .nav-toggle:checked ~ .nav-toggle-label span::before {
        transform: rotate(90deg);
        bottom: 0;
    }
    
    .nav-toggle:checked ~ .nav-toggle-label span::after {
        transform: rotate(90deg);
        top: 0;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background-color: rgba(42, 93, 87, 0.95);
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
    }
    
    .nav-toggle:checked ~ .main-nav {
        height: auto;
        padding: 2rem 0;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav li {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    
    .main-nav a {
        display: block;
        padding: 1.5rem;
    }
    
    .benefits-grid,
    .reviews-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .order-form {
        padding: 3rem 2rem;
    }
    
    .company-info {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 55%;
    }
    
    .hero-section h1 {
        font-size: 3.8rem;
    }
    
    .hero-section p {
        font-size: 1.8rem;
    }
    
    section {
        padding: 6rem 0;
    }
    
    .container {
        width: 95%;
    }
    
    .benefit-card,
    .review-card,
    .product-card {
        padding: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        margin-bottom: 2rem;
    }
    
    .info-item {
        justify-content: center;
    }
    
    .cookie-popup {
        width: 90%;
    }
} 