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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    background-color: #FAFAFA;
}

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

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2C1810, #8B7355);
    color: white;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content h3 {
    color: #D4AF37;
    margin-bottom: 10px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary, .btn-outline {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: #2C1810;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FFD700, #D4AF37);
    transform: translateY(-2px);
}

.btn-secondary {
    background: #8B7355;
    color: white;
}

.btn-secondary:hover {
    background: #A0845C;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid #D4AF37;
}

.btn-outline:hover {
    background: #D4AF37;
    color: #2C1810;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    transition: opacity 0.3s ease;
}

.cookie-modal.hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-category {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
}

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

.cookie-category input[type="checkbox"] {
    margin-top: 3px;
}

.cookie-category span {
    font-size: 0.9em;
    color: #666;
}

.modal-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: flex-end;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #2C1810, #8B7355);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #D4AF37;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

.brand-name {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #D4AF37;
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, #FFD700);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #D4AF37;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F5E6D3, #E8D5B7);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23D4AF37" opacity="0.1"/><circle cx="80" cy="40" r="3" fill="%23FF6B35" opacity="0.1"/><circle cx="40" cy="80" r="2" fill="%238B7355" opacity="0.1"/></svg>');
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    position: relative;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2C1810, #8B7355);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #5D4037;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: #2C1810;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #FFD700, #D4AF37);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-candle {
    animation: gentle-float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
}

@keyframes gentle-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

/* Company Info Section */
.company-info {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFFFFF, #F8F4F0);
    position: relative;
}

.company-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M50 100 Q100 50 150 100 Q100 150 50 100" fill="%23D4AF37" opacity="0.03"/></svg>');
}

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

.info-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #D4AF37, #FFD700);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.info-card.tradition::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, #D4AF37 20%, transparent 20%);
    opacity: 0.1;
}

.info-card.quality::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #228B22 25%, transparent 25%);
    opacity: 0.1;
}

.info-card.custom::after {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, #FF6B35 15%, transparent 15%);
    opacity: 0.1;
    transform: translateX(-50%);
}

.info-icon {
    margin-bottom: 20px;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.info-card h3 {
    color: #2C1810;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.info-card p {
    color: #666;
    line-height: 1.7;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #F5E6D3, #E8D5B7);
    position: relative;
}

.services h2 {
    text-align: center;
    color: #2C1810;
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #FFD700);
    transform: translateX(-50%);
    border-radius: 2px;
}

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

.service-card {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #D4AF37, #FFD700, #D4AF37);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.service-card.handmade {
    border-left: 5px solid #D4AF37;
}

.service-card.workshop {
    border-left: 5px solid #FF6B35;
}

.service-card.events {
    border-left: 5px solid #228B22;
}

.service-icon {
    text-align: center;
    margin-bottom: 25px;
}

.service-icon svg {
    transition: all 0.3s ease;
}

.service-card:hover .service-icon svg {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    color: #2C1810;
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-card ul {
    list-style: none;
    color: #555;
}

.service-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.service-card li::before {
    content: '✦';
    color: #D4AF37;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: linear-gradient(135deg, #2C1810, #4A3728);
    color: white;
    position: relative;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="30" r="1" fill="%23D4AF37" opacity="0.3"/><circle cx="80" cy="70" r="1.5" fill="%23FFD700" opacity="0.2"/><circle cx="50" cy="20" r="1" fill="%23FF6B35" opacity="0.2"/></svg>');
}

.reviews h2 {
    text-align: center;
    color: #D4AF37;
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.review-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.15);
    border-color: rgba(212, 175, 55, 0.5);
}

.stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.review-card p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #F0F0F0;
}

.reviewer {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 15px;
}

.reviewer strong {
    color: #D4AF37;
    display: block;
    margin-bottom: 5px;
}

.reviewer span {
    color: #CCC;
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFE5B4, #F5E6D3);
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #D4AF37 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.1;
    animation: gentle-rotate 20s linear infinite;
}

@keyframes gentle-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.newsletter .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.newsletter-content {
    flex: 1;
}

.newsletter-content h2 {
    color: #2C1810;
    font-size: 2.3rem;
    margin-bottom: 20px;
}

.newsletter-content p {
    color: #5D4037;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 400px;
}

.form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 15px;
    border: 2px solid #D4AF37;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
    border-color: #FFD700;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.subscribe-btn {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: #2C1810;
    border: none;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.privacy-notice {
    font-size: 0.9rem;
    color: #666;
}

.privacy-notice a {
    color: #D4AF37;
    text-decoration: none;
}

.privacy-notice a:hover {
    text-decoration: underline;
}

.newsletter-visual {
    flex: 0 0 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.newsletter-visual svg {
    animation: float-newsletter 4s ease-in-out infinite;
}

@keyframes float-newsletter {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFFFFF, #F8F4F0);
    position: relative;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    color: #2C1810;
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #FFD700);
    border-radius: 2px;
}

.about-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

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

.stat-label {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-visual {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-visual svg {
    animation: about-glow 8s ease-in-out infinite;
}

@keyframes about-glow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3)); }
    50% { filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5)); }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #F5E6D3, #E8D5B7);
}

.contact h2 {
    text-align: center;
    color: #2C1810;
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #FFD700);
    transform: translateX(-50%);
    border-radius: 2px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

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

.contact-item h4 {
    color: #2C1810;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.submit-btn {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: #2C1810;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.social-media {
    text-align: center;
    padding-top: 40px;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
}

.social-media h3 {
    color: #2C1810;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    display: inline-block;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2C1810, #1A0F08);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #D4AF37;
}

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

.footer-column h4 {
    color: #D4AF37;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #CCC;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-column p {
    color: #CCC;
    line-height: 1.6;
    margin-bottom: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 20px;
    text-align: center;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
        margin-bottom: 20px;
    }
    
    .contact-grid,
    .about-content,
    .newsletter .container {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    
    .services-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        justify-content: space-around;
        flex-wrap: wrap;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .form-group {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .services h2,
    .contact h2,
    .about-text h2 {
        font-size: 2rem;
    }
    
    .info-card,
    .service-card {
        padding: 25px;
    }
    
    .modal-content {
        padding: 20px;
        margin: 10px;
    }
    
    .social-links {
        flex-wrap: wrap;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

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

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* Loading Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading {
    animation: spin 1s linear infinite;
}