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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #1e293b;
    background-color: #f8fafc;
}

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

/* Header */
.header {
    background-color: #f8fafc;
    padding: 20px 0;
    border-bottom: 2px solid #e2e8f0;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.brand-name {
    font-size: 32px;
    font-weight: 700;
    color: #1e40af;
    letter-spacing: -0.025em;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
}

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

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

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #475569;
    margin-bottom: 32px;
    line-height: 1.5;
}

.cta-button {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.hero-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #1e40af;
}

.hub-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
}

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

.image-placeholder {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    width: 400px;
    height: 300px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 16px;
    text-align: center;
    padding: 20px;
    border: 2px solid #1e40af;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.about h2 {
    font-size: 36px;
    color: #1e40af;
    margin-bottom: 24px;
}

.about p {
    font-size: 20px;
    color: #475569;
    max-width: 800px;
    margin: 0 auto;
}

/* Featured Crafts */
.featured-crafts {
    padding: 80px 0;
    background-color: #f8fafc;
    text-align: center;
}

.featured-crafts h2 {
    text-align: center;
    font-size: 36px;
    color: #1e40af;
    margin-bottom: 60px;
}

.crafts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.craft-item {
    background: white;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: border-color 0.2s;
}

.craft-item:hover {
    border-color: #dc2626;
}

.craft-icon {
    margin-bottom: 20px;
}

.craft-item h3 {
    font-size: 24px;
    color: #1e40af;
    margin-bottom: 12px;
}

.craft-item p {
    color: #64748b;
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.products h2 {
    text-align: center;
    font-size: 36px;
    color: #1e40af;
    margin-bottom: 60px;
}

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

.product-item {
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    transition: border-color 0.2s;
}

.product-item:hover {
    border-color: #dc2626;
}

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

.product-item h3 {
    font-size: 20px;
    color: #1e40af;
    margin: 20px 20px 12px;
}

.product-item p {
    color: #64748b;
    margin: 0 20px 20px;
    font-size: 14px;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: #1e40af;
    margin: 0 20px 12px;
}

.product-button {
    background: #1e40af;
    color: white;
    border: none;
    padding: 12px 24px;
    margin: 0 20px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    width: calc(100% - 40px);
    transition: background-color 0.2s;
}

.product-button:hover {
    background-color: #1d4ed8;
}

/* Learning Hub */
.learning-hub {
    padding: 80px 0;
    background-color: #f8fafc;
    text-align: center;
}

.learning-hub h2 {
    text-align: center;
    font-size: 36px;
    color: #1e40af;
    margin-bottom: 60px;
}

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

.hub-text h3 {
    font-size: 28px;
    color: #1e40af;
    margin-bottom: 20px;
}

.hub-text p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 32px;
}

.secondary-button {
    background: transparent;
    color: #1e40af;
    border: 2px solid #1e40af;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.secondary-button:hover {
    background-color: #1e40af;
    color: white;
}

/* Workshops */
.workshops {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.workshops h2 {
    font-size: 36px;
    color: #1e40af;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 20px;
    color: #64748b;
    margin-bottom: 60px;
}

.workshop-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature {
    padding: 32px;
}

.feature-icon {
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 24px;
    color: #1e40af;
    margin-bottom: 12px;
}

.feature p {
    color: #64748b;
}

/* Why Choose */
.why-choose {
    padding: 80px 0;
    background-color: #f8fafc;
    text-align: center;
}

.why-choose h2 {
    text-align: center;
    font-size: 36px;
    color: #1e40af;
    margin-bottom: 60px;
}

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

.reason {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
}

.reason h3 {
    font-size: 24px;
    color: #1e40af;
    margin-bottom: 12px;
}

.reason p {
    color: #64748b;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    color: #1e40af;
    margin-bottom: 60px;
}

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

.testimonial {
    background: #f8fafc;
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid #dc2626;
}

.testimonial p {
    font-size: 16px;
    color: #475569;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial cite {
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
}

/* Contacts */
.contacts {
    padding: 80px 0;
    background-color: #f8fafc;
}

.contacts h2 {
    text-align: center;
    font-size: 36px;
    color: #1e40af;
    margin-bottom: 60px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
}

.contact-icon {
    flex-shrink: 0;
    padding: 12px;
    background: #f1f5f9;
    border-radius: 8px;
}

.contact-item h3 {
    font-size: 20px;
    color: #1e40af;
    margin-bottom: 8px;
}

.contact-item p {
    color: #64748b;
}

/* Footer */
.footer {
    background-color: #1e293b;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 20px;
}

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

.footer-brand span {
    font-size: 20px;
    font-weight: 600;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 32px;
    justify-content: center;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-copyright p {
    color: #94a3b8;
    font-size: 14px;
    text-align: right;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    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: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #64748b;
}

.close:hover {
    color: #1e40af;
}

.modal-content h3 {
    color: #1e40af;
    margin-bottom: 24px;
    font-size: 24px;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.order-form input,
.order-form select,
.order-form textarea {
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
    outline: none;
    border-color: #1e40af;
}

.submit-button {
    background: #1e40af;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.submit-button:hover {
    background-color: #1d4ed8;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    color: white;
    padding: 24px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

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

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

.cookie-text p {
    margin: 0;
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.4;
}

.cookie-banner-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-accept,
.cookie-reject,
.cookie-customize {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.cookie-accept {
    background: #1e40af;
    color: white;
}

.cookie-accept:hover {
    background: #1d4ed8;
}

.cookie-reject {
    background: transparent;
    color: #cbd5e1;
    border: 1px solid #475569;
}

.cookie-reject:hover {
    background: #475569;
    color: white;
}

.cookie-customize {
    background: #dc2626;
    color: white;
}

.cookie-customize:hover {
    background: #b91c1c;
}

.cookie-policy-link {
    color: #94a3b8;
    text-decoration: underline;
    font-size: 13px;
    margin-left: 8px;
}

.cookie-policy-link:hover {
    color: #cbd5e1;
}

.cookie-settings {
    background: #374151;
    margin-top: 20px;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #4b5563;
}

.cookie-settings h3 {
    margin: 0 0 20px 0;
    color: white;
    font-size: 18px;
}

.cookie-category {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #4b5563;
}

.cookie-category:last-of-type {
    border-bottom: none;
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 600;
    color: #e5e7eb;
}

.cookie-category input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.cookie-category p {
    margin: 4px 0 0 24px;
    font-size: 13px;
    color: #9ca3af;
}

.cookie-settings-buttons {
    margin-top: 20px;
    display: flex;
    gap: 12px;
}

.cookie-save,
.cookie-cancel {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cookie-save {
    background: #1e40af;
    color: white;
}

.cookie-save:hover {
    background: #1d4ed8;
}

.cookie-cancel {
    background: transparent;
    color: #9ca3af;
    border: 1px solid #4b5563;
}

.cookie-cancel:hover {
    background: #4b5563;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hub-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: center;
    }
    
    .footer-copyright p {
        text-align: center;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .cookie-banner-buttons {
        justify-content: center;
        gap: 8px;
    }
    
    .cookie-settings-buttons {
        flex-direction: column;
    }
}