/* 
Herbavit.sk - Main Stylesheet
Color Palette:
- Saffron #F4C542 (Deep Saffron - accent)
- Tea Green #CFE7CD (Tea Green - background)
- Charcoal #2E2E2E (Graphite Black - headings)
- Peach #FFD9B3 (Warm Peach - buttons)
- Sky Blue #85C1E9 (Sky Blue - details and links)
*/

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #2E2E2E;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #85C1E9;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #F4C542;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

h1, h2, h3, h4, h5, h6 {
    color: #2E2E2E;
    margin-bottom: 20px;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #F4C542;
    margin: 15px auto 0;
}

p {
    margin-bottom: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: #F4C542;
    color: #2E2E2E;
}

.btn-primary:hover {
    background-color: #e0b32c;
    color: #2E2E2E;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: #FFD9B3;
    color: #2E2E2E;
}

.btn-secondary:hover {
    background-color: #ffc894;
    color: #2E2E2E;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-nav {
    background-color: #F4C542;
    color: #2E2E2E;
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Header */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    display: block;
}

.main-nav .nav-menu {
    display: flex;
    list-style: none;
}

.main-nav .nav-menu li {
    margin-left: 25px;
}

.main-nav .nav-menu a {
    color: #2E2E2E;
    font-weight: 500;
}

.main-nav .nav-menu a:hover {
    color: #F4C542;
}

.menu-toggle, .menu-icon {
    display: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #CFE7CD 0%, #e8f4e7 100%);
    text-align: center;
    padding: 100px 0;
}

.hero h1 {
    color: #2E2E2E;
    margin-bottom: 15px;
    font-size: 2.8rem;
}

.hero h2 {
    color: #2E2E2E;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.hero h2::after {
    content: none;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* About Section */
.about {
    background-color: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text, .about-image {
    flex: 1;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Benefits Section */
.benefits {
    background-color: #f9f9f9;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #CFE7CD;
}

.benefit-icon.natural::before,
.benefit-icon.quality::before,
.benefit-icon.tradition::before,
.benefit-icon.results::before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    background-color: #F4C542;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

.benefit-icon.natural::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12,2L4.5,20.29L5.21,21L18.79,21L19.5,20.29L12,2Z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12,2L4.5,20.29L5.21,21L18.79,21L19.5,20.29L12,2Z'/%3E%3C/svg%3E");
}

.benefit-icon.quality::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12,17.27L18.18,21L16.54,13.97L22,9.24L14.81,8.62L12,2L9.19,8.62L2,9.24L7.45,13.97L5.82,21L12,17.27Z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12,17.27L18.18,21L16.54,13.97L22,9.24L14.81,8.62L12,2L9.19,8.62L2,9.24L7.45,13.97L5.82,21L12,17.27Z'/%3E%3C/svg%3E");
}

.benefit-icon.tradition::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3,3H21V5H3V3M3,7H21V9H3V7M3,11H21V13H3V11M3,15H21V17H3V15M3,19H21V21H3V19Z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3,3H21V5H3V3M3,7H21V9H3V7M3,11H21V13H3V11M3,15H21V17H3V15M3,19H21V21H3V19Z'/%3E%3C/svg%3E");
}

.benefit-icon.results::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z'/%3E%3C/svg%3E");
}

/* Products Section */
.products {
    background-color: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: #fff;
    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;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card h3 {
    color: #2E2E2E;
    padding: 20px 20px 10px;
    font-size: 1.5rem;
}

.product-description {
    padding: 0 20px;
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #F4C542;
    margin-bottom: 20px;
}

.product-card .btn {
    margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials {
    background-color: #f9f9f9;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial-text {
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text p {
    font-style: italic;
}

.testimonial-text p::before,
.testimonial-text p::after {
    content: '"';
    color: #F4C542;
    font-size: 1.5rem;
    font-weight: bold;
}

.testimonial-author {
    color: #85C1E9;
    font-weight: bold;
}

/* FAQ Section */
.faq {
    background-color: #fff;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-toggle {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.accordion-title {
    display: block;
    padding: 15px 20px;
    background-color: #CFE7CD;
    color: #2E2E2E;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

.accordion-title:hover {
    background-color: #bfdcbb;
}

.accordion-title::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.accordion-toggle:checked + .accordion-title::after {
    transform: translateY(-50%) rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    background-color: #f9f9f9;
    transition: max-height 0.3s ease;
}

.accordion-toggle:checked ~ .accordion-content {
    max-height: 500px;
}

.accordion-content p {
    padding: 20px;
    margin: 0;
}

/* Order Form Section */
.order-form {
    background-color: #CFE7CD;
    padding: 80px 0;
}

.teapot-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.teapot-form::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 20px;
    background-color: #F4C542;
    border-radius: 20px 20px 0 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    font-weight: normal;
    margin-bottom: 0;
    line-height: 1.4;
}

/* Contact Section */
.contact {
    background-color: #f9f9f9;
}

.contact-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-map {
    flex: 1;
    min-width: 300px;
}

.contact-map img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
.site-footer {
    background-color: #2E2E2E;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo,
.footer-nav,
.footer-legal,
.footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-nav ul,
.footer-legal ul {
    list-style: none;
}

.footer-nav li,
.footer-legal li {
    margin-bottom: 10px;
}

.site-footer h3 {
    color: #F4C542;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.site-footer a {
    color: #fff;
}

.site-footer a:hover {
    color: #F4C542;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-description {
    max-width: 600px;
    margin: 0 auto 20px;
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(46, 46, 46, 0.9);
    color: #fff;
    padding: 15px;
    z-index: 1001;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex-grow: 1;
}

.cookie-content .btn {
    white-space: nowrap;
}

/* Thank You Page Styles */
.thankyou {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    padding: 80px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thankyou-content {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    padding: 50px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.thankyou-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #F4C542, #CFE7CD);
}

.thankyou-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.thankyou-icon {
    width: 120px;
    height: 120px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(244, 197, 66, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(244, 197, 66, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 30px rgba(244, 197, 66, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(244, 197, 66, 0.2);
    }
}

.thankyou-text {
    margin-bottom: 30px;
}

.thankyou-text h1 {
    color: #2E2E2E;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.success-line {
    width: 80px;
    height: 4px;
    background-color: #F4C542;
    margin: 0 auto 30px;
    border-radius: 2px;
}

.thankyou-text p {
    color: #555;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 15px;
}

.order-summary {
    background-color: #f9f9f9;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: left;
}

.order-summary h3 {
    color: #2E2E2E;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.order-summary ol {
    padding-left: 20px;
}

.order-summary li {
    margin-bottom: 10px;
    color: #555;
}

.thankyou-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.thankyou-actions .btn {
    min-width: 180px;
}

@media (max-width: 768px) {
    .thankyou {
        padding: 50px 0;
    }
    
    .thankyou-content {
        padding: 40px 25px;
    }
    
    .thankyou-icon {
        width: 100px;
        height: 100px;
    }
    
    .thankyou-text h1 {
        font-size: 1.8rem;
    }
    
    .thankyou-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .thankyou-actions .btn {
        width: 100%;
    }
}

/* Media Queries */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-text, .about-image {
        flex: 100%;
    }
    
    .contact-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    section {
        padding: 40px 0;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .menu-icon {
        display: block;
        cursor: pointer;
        width: 30px;
        height: 20px;
        position: relative;
    }
    
    .menu-icon span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background-color: #2E2E2E;
        border-radius: 3px;
        transition: transform 0.3s ease;
    }
    
    .menu-icon span:nth-child(1) {
        top: 0;
    }
    
    .menu-icon span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }
    
    .menu-icon span:nth-child(3) {
        bottom: 0;
    }
    
    .menu-toggle:checked + .menu-icon span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle:checked + .menu-icon span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked + .menu-icon span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .menu-toggle:checked ~ .nav-menu {
        max-height: 500px;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .teapot-form {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero h2 {
        font-size: 1.4rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .products-grid,
    .testimonials-container {
        grid-template-columns: 1fr;
    }
} 