/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Centered sections */
.centered {
    text-align: center;
}

.centered .section-content,
.centered .hero-content,
.centered .meditation-content,
.centered .corporate-content {
    text-align: center;
}

.centered .features-grid,
.centered .services-grid,
.centered .classes-grid,
.centered .products-grid {
    justify-content: center;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fefefe;
}

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

/* Header */
.header {
    background: rgba(254, 254, 254, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(139, 111, 71, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

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

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

.brand-name {
    font-size: 24px;
    font-weight: 600;
    color: #8b6f47;
    letter-spacing: 1px;
    margin: 0;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(254, 254, 254, 0.98), rgba(139, 111, 71, 0.03));
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    text-align: left;
}

.hero-text h2 {
    font-size: 48px;
    font-weight: normal;
    margin-bottom: 30px;
    color: #333;
    line-height: 1.2;
    letter-spacing: 1px;
}

.hero-text p {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #666;
}

.feature-dot {
    width: 8px;
    height: 8px;
    background: #8b6f47;
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about {
    padding: 80px 0;
    background: #fefefe;
}

.section-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-content h2 {
    font-size: 36px;
    font-weight: normal;
    margin-bottom: 30px;
    color: #333;
    letter-spacing: 1px;
}

.section-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature {
    background: #fefefe;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.feature p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.03), rgba(254, 254, 254, 0.95));
}

.services h2 {
    font-size: 36px;
    font-weight: normal;
    margin-bottom: 50px;
    color: #333;
    letter-spacing: 1px;
    text-align: center;
}

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

.service-card {
    background: #fefefe;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Classes Section */
.classes {
    padding: 80px 0;
    background: #fefefe;
}

.classes h2 {
    font-size: 36px;
    font-weight: normal;
    margin-bottom: 30px;
    color: #333;
    letter-spacing: 1px;
    text-align: center;
}

.classes p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 50px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.class-type {
    background: #fefefe;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.class-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.class-type h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.class-type p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Meditation Section */
.meditation {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.03), rgba(254, 254, 254, 0.95));
}

.meditation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.text-content h2 {
    font-size: 36px;
    font-weight: normal;
    margin-bottom: 30px;
    color: #333;
    letter-spacing: 1px;
}

.text-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.meditation-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.benefit p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.meditation-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Products Section */
.products {
    padding: 80px 0;
    background: #fefefe;
}

.products h2 {
    font-size: 36px;
    font-weight: normal;
    margin-bottom: 20px;
    color: #333;
    letter-spacing: 1px;
    text-align: center;
}

.products > .container > p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 50px;
    text-align: center;
}

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

.product-card {
    background: #fefefe;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

.product-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 20px 20px 10px 20px;
    color: #333;
}

.product-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 0 20px 15px 20px;
}

.product-price {
    font-size: 18px;
    font-weight: 600;
    color: #8b6f47;
    margin: 15px 20px;
}

.product-btn {
    background: #8b6f47;
    color: #fefefe;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    width: calc(100% - 40px);
    margin: 0 20px 20px 20px;
}

.product-btn:hover {
    background: #a0845a;
}

/* Corporate Section */
.corporate {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.03), rgba(254, 254, 254, 0.95));
}

.corporate-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.corporate-content h2 {
    font-size: 36px;
    font-weight: normal;
    margin-bottom: 30px;
    color: #333;
    letter-spacing: 1px;
}

.corporate-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.corporate-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.corp-feature {
    text-align: center;
}

.corp-feature h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.corp-feature p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.cta-btn {
    display: inline-block;
    padding: 15px 30px;
    background: #8b6f47;
    color: #fefefe;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-btn:hover {
    background: #a0845a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 111, 71, 0.3);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #fefefe;
}

.contact h2 {
    font-size: 36px;
    font-weight: normal;
    margin-bottom: 50px;
    color: #333;
    letter-spacing: 1px;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.contact-form img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fefefe;
    padding: 60px 0 20px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

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

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

.footer-brand span {
    font-size: 24px;
    font-weight: 600;
    color: #8b6f47;
    letter-spacing: 1px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #8b6f47;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #999;
    margin: 0;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    color: #fefefe;
    padding: 25px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #e0e0e0;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    white-space: nowrap;
}

.cookie-btn.accept {
    background: #8b6f47;
    color: #fefefe;
}

.cookie-btn.accept:hover {
    background: #a0845a;
}

.cookie-btn.reject {
    background: transparent;
    color: #fefefe;
    border: 1px solid #666;
}

.cookie-btn.reject:hover {
    background: #333;
}

.cookie-btn.customize {
    background: transparent;
    color: #8b6f47;
    border: 1px solid #8b6f47;
}

.cookie-btn.customize:hover {
    background: rgba(139, 111, 71, 0.1);
}

.cookie-link {
    color: #8b6f47;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.cookie-link:hover {
    text-decoration: underline;
}

/* Cookie Customization Panel */
.cookie-customization {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-customization h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #8b6f47;
}

.cookie-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.cookie-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 5px;
}

.cookie-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.cookie-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #666;
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-checkbox input[type="checkbox"]:checked + .checkmark {
    background: #8b6f47;
    border-color: #8b6f47;
}

.cookie-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 2px;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.cookie-checkbox input[type="checkbox"]:disabled + .checkmark {
    background: #444;
    border-color: #444;
}

.cookie-info strong {
    display: block;
    font-size: 13px;
    margin-bottom: 5px;
    color: #e0e0e0;
}

.cookie-info p {
    font-size: 12px;
    color: #aaa;
    margin: 0;
    line-height: 1.4;
}

.cookie-custom-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-btn.decline {
    background: transparent;
    color: #ccc;
    border: 1px solid #666;
}

.cookie-btn.decline:hover {
    background: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 36px;
    }
    
    .hero-image img {
        height: 300px;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(254, 254, 254, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid rgba(139, 111, 71, 0.1);
        gap: 15px;
    }

    .nav-links.active {
        display: flex;
    }

    .hero h2 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .section-content h2 {
        font-size: 28px;
    }

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

    .meditation-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .meditation-text,
    .contact-info {
        text-align: center;
    }

    .features-grid,
    .services-grid,
    .classes-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form {
        padding: 30px 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-text {
        text-align: center;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .cookie-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .cookie-link {
        font-size: 12px;
    }
    
    .cookie-categories {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .cookie-custom-buttons {
        justify-content: center;
    }
}