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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2D3748;
    background-color: #FFFFFF;
}

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

.centered-content {
    text-align: center;
}

.centered-content .section-content {
    text-align: left;
}

/* Header */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2E3A59;
    text-decoration: none;
}

.brand-name a {
    color: inherit;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2E3A59 0%, #4A5568 100%);
    color: white;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 500px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #CBD5E0;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #E2E8F0;
}

.feature-icon {
    font-size: 1.2rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cta-button {
    background-color: #D4AF37;
    color: #2E3A59;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    align-self: flex-start;
}

.cta-button:hover {
    background-color: #B8941F;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2E3A59;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #4A5568;
    max-width: 600px;
    margin: 0 auto;
}

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

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4A5568;
    margin-bottom: 2rem;
}

/* About Introduction */
.about-intro {
    padding: 4rem 0;
    background-color: #F7FAFC;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.intro-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.intro-icon {
    margin-bottom: 1rem;
}

.intro-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2E3A59;
    margin-bottom: 1rem;
}

.intro-item p {
    color: #4A5568;
    line-height: 1.6;
}

/* Products Section */
.products {
    padding: 4rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.product-content {
    padding: 2rem;
}

.product-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2E3A59;
    margin-bottom: 1rem;
}

.product-content p {
    color: #4A5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #D4AF37;
    margin-bottom: 1rem;
}

.product-button {
    background-color: #D4AF37;
    color: #2E3A59;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.product-button:hover {
    background-color: #B8941F;
    transform: translateY(-1px);
}

/* Workshops Section */
.workshops {
    padding: 4rem 0;
    background-color: #F7FAFC;
}

.workshops .section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
}

.workshop-features {
    list-style: none;
    margin-bottom: 2rem;
}

.workshop-features li {
    padding: 0.5rem 0;
    color: #4A5568;
    position: relative;
    padding-left: 1.5rem;
}

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

.section-button {
    background-color: #D4AF37;
    color: #2E3A59;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.section-button:hover {
    background-color: #B8941F;
    transform: translateY(-2px);
}

.section-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Training Section */
.training {
    padding: 4rem 0;
}

.training .section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
}

.training-features {
    list-style: none;
    margin-bottom: 2rem;
}

.training-features li {
    padding: 0.5rem 0;
    color: #4A5568;
    position: relative;
    padding-left: 1.5rem;
}

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

/* Partnership Section */
.partnerships {
    padding: 4rem 0;
    background-color: #F7FAFC;
}

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

.partnership-text p {
    font-size: 1.1rem;
    color: #4A5568;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.partnership-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 0.5rem;
}

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

/* Heritage Section */
.heritage {
    padding: 4rem 0;
}

.heritage .section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
}

.heritage-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.value-item h4 {
    color: #2E3A59;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.value-item p {
    color: #4A5568;
    font-size: 0.9rem;
}

/* Membership Section */
.membership {
    padding: 4rem 0;
    background-color: #F7FAFC;
}

.membership-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tier-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease;
}

.tier-card.featured {
    border: 2px solid #D4AF37;
    transform: scale(1.02);
}

.tier-card:hover {
    transform: translateY(-5px);
}

.tier-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.tier-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2E3A59;
    margin-bottom: 1rem;
}

.tier-card p {
    color: #4A5568;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.tier-button {
    background-color: #D4AF37;
    color: #2E3A59;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.tier-button:hover {
    background-color: #B8941F;
    transform: translateY(-1px);
}

/* Contact Section */
.contact {
    padding: 4rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: #F7FAFC;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-details h4 {
    color: #2E3A59;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #4A5568;
    margin: 0;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h4 {
    color: #2E3A59;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #CBD5E0;
    border-radius: 6px;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #D4AF37;
}

.contact-button {
    background-color: #D4AF37;
    color: #2E3A59;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.contact-button:hover {
    background-color: #B8941F;
    transform: translateY(-1px);
}

/* Footer */
.footer {
    background-color: #2E3A59;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo-section {
    margin-bottom: 1rem;
}

.footer-brand .logo {
    width: 32px;
    height: 32px;
}

.footer-brand .brand-name {
    font-size: 1.25rem;
    color: white;
}

.footer-brand p {
    color: #CBD5E0;
    line-height: 1.6;
    margin: 0;
}

.footer-section h4 {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #CBD5E0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: #D4AF37;
}

.footer-section p {
    color: #CBD5E0;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #4A5568;
    padding-top: 1rem;
    text-align: center;
    color: #CBD5E0;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    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: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: #4A5568;
    cursor: pointer;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: #2E3A59;
}

.modal-content h3 {
    color: #2E3A59;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.modal-content input,
.modal-content select,
.modal-content textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #CBD5E0;
    border-radius: 6px;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: border-color 0.2s ease;
}

.modal-content input:focus,
.modal-content select:focus,
.modal-content textarea:focus {
    outline: none;
    border-color: #D4AF37;
}

.order-button {
    background-color: #D4AF37;
    color: #2E3A59;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.order-button:hover {
    background-color: #B8941F;
    transform: translateY(-1px);
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2E3A59 0%, #4A5568 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-text h4 {
    margin: 0 0 0.5rem 0;
    color: white;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-btn.accept {
    background-color: #D4AF37;
    color: #2E3A59;
}

.cookie-btn.accept:hover {
    background-color: #B8941F;
    transform: translateY(-1px);
}

.cookie-btn.customize {
    background-color: #4A5568;
    color: white;
}

.cookie-btn.reject {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-link {
    color: #D4AF37;
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.cookie-link:hover {
    border-bottom-color: #D4AF37;
}

/* Cookie Customization Panel */
.cookie-customization {
    display: none;
    background: white;
    color: #2E3A59;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem 0;
}

.cookie-customization.show {
    display: block;
}

.cookie-custom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cookie-custom-content h4 {
    margin: 0 0 1.5rem 0;
    color: #2E3A59;
}

.cookie-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cookie-category {
    padding: 1rem;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    background: #F7FAFC;
}

.cookie-category-header {
    margin-bottom: 0.5rem;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}

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

.toggle-slider {
    position: relative;
    width: 44px;
    height: 24px;
    background-color: #CBD5E0;
    border-radius: 24px;
    margin-right: 0.75rem;
    transition: background-color 0.2s ease;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.cookie-toggle input[type="checkbox"]:checked + .toggle-slider {
    background-color: #D4AF37;
}

.cookie-toggle input[type="checkbox"]:checked + .toggle-slider::before {
    transform: translateX(20px);
}

.cookie-toggle input[type="checkbox"]:disabled + .toggle-slider {
    background-color: #D4AF37;
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-toggle input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.cookie-toggle:has(input[type="checkbox"]:disabled) {
    cursor: not-allowed;
}

.toggle-label {
    color: #2E3A59;
}

.cookie-category-desc {
    font-size: 0.9rem;
    color: #4A5568;
    margin: 0;
    line-height: 1.4;
}

.cookie-custom-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cookie-custom-actions .cookie-btn {
    min-width: 120px;
}

.cookie-btn.decline {
    background-color: #E2E8F0;
    color: #4A5568;
    border: 1px solid #CBD5E0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 6rem 0 3rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-features {
        justify-content: center;
    }

    .section-header h3 {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .workshops .section-content,
    .training .section-content,
    .heritage .section-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .partnership-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .heritage-values {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .membership-tiers {
        grid-template-columns: 1fr;
    }

    .tier-card.featured {
        transform: none;
    }

    .tier-card.featured:hover {
        transform: translateY(-5px);
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-actions {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cookie-categories {
        grid-template-columns: 1fr;
    }

    .cookie-custom-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 5rem 0 2rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-header h3 {
        font-size: 1.75rem;
    }

    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
    }
}