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

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

.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 0%, #4A2C1A 100%);
    color: white;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-content h3 {
    color: #F4E4BC;
    margin-bottom: 10px;
    font-size: 1.2em;
}

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

.cookie-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-accept-all {
    background: #32CD32;
    color: white;
}

.btn-necessary {
    background: #666;
    color: white;
}

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

.btn-accept-all:hover, .btn-necessary:hover, .btn-settings:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1001;
}

.cookie-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    margin: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cookie-option {
    margin: 15px 0;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

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

.btn-save {
    background: #32CD32;
    color: white;
}

.btn-close {
    background: #666;
    color: white;
}

/* Navigation Styles */
.navbar {
    background: linear-gradient(135deg, #8B4513 0%, #D4A574 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    font-size: 1.5em;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav-menu a:hover {
    color: #F4E4BC;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #F4E4BC;
    transition: width 0.3s ease;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section Styles */
.hero {
    background: linear-gradient(135deg, #F4E4BC 0%, #E6D2A6 100%);
    padding: 80px 0;
    display: flex;
    align-items: center;
    min-height: 600px;
    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="50" cy="50" r="2" fill="%23D4A574" opacity="0.1"/></svg>') repeat;
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

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

.hero h1 {
    font-size: 3.5em;
    color: #8B4513;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    line-height: 1.2;
}

.hero p {
    font-size: 1.3em;
    color: #5D4037;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    position: relative;
    z-index: 4;
    pointer-events: auto;
}

.btn-primary {
    background: linear-gradient(135deg, #D4A574 0%, #8B4513 100%);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: #8B4513;
    border: 2px solid #8B4513;
}

.btn-tertiary {
    padding: 12px 25px;
    background: transparent;
    color: #8B4513;
    border: 2px solid #D4A574;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    position: relative;
    z-index: 4;
    pointer-events: auto;
}

.btn-primary:hover, .btn-secondary:hover, .btn-tertiary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-tertiary:hover {
    background: #D4A574;
    color: white;
    border-color: #D4A574;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.7);
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(212, 165, 116, 0.3);
    transition: all 0.3s ease;
}

.hero-features .feature:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hero-features .feature span {
    color: #5D4037;
    font-weight: 500;
    font-size: 0.9em;
}

.hero-image {
    flex: 1;
    text-align: center;
}

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

.company-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, #F4E4BC 0%, transparent 50%), 
                radial-gradient(circle at 80% 20%, #E6D2A6 0%, transparent 50%);
    opacity: 0.3;
}

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

.info-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px 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;
    transition: all 0.3s ease;
}

.story-card::before {
    background: linear-gradient(90deg, #FF6347, #FF7F50);
}

.mission-card::before {
    background: linear-gradient(90deg, #32CD32, #90EE90);
}

.quality-card::before {
    background: linear-gradient(90deg, #FFD700, #FFA500);
}

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

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

.info-card h3 {
    color: #8B4513;
    margin-bottom: 20px;
    font-size: 1.5em;
}

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

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #8B4513 0%, #5D4037 100%);
    color: white;
    position: relative;
}

.services::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"><polygon points="50,10 60,35 90,35 70,55 80,85 50,70 20,85 30,55 10,35 40,35" fill="%23F4E4BC" opacity="0.05"/></svg>') repeat;
    background-size: 100px 100px;
}

.services h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
    color: #F4E4BC;
    position: relative;
    z-index: 1;
}

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

.service-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-10px);
}

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

.service-card h3 {
    color: #F4E4BC;
    margin-bottom: 20px;
    font-size: 1.4em;
}

.service-card p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

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

/* Products Section */
.products {
    padding: 80px 0;
    background: linear-gradient(135deg, #F0F8FF 0%, #E6F3FF 100%);
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(212, 165, 116, 0.05) 10px,
        rgba(212, 165, 116, 0.05) 20px
    );
}

.products h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
    color: #8B4513;
    position: relative;
    z-index: 1;
}

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

.product-category {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.product-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.category-header {
    padding: 30px;
    text-align: center;
    position: relative;
}

.bread-category .category-header {
    background: linear-gradient(135deg, #D4A574 0%, #F4E4BC 100%);
}

.pastry-category .category-header {
    background: linear-gradient(135deg, #FFB6C1 0%, #FFE4E1 100%);
}

.cake-category .category-header {
    background: linear-gradient(135deg, #98FB98 0%, #F0FFF0 100%);
}

.category-header h3 {
    color: #8B4513;
    margin-top: 15px;
    font-size: 1.5em;
}

.product-list {
    padding: 30px;
}

.product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.product-item:last-child {
    border-bottom: none;
}

.price {
    font-weight: bold;
    color: #8B4513;
    font-size: 1.1em;
}

/* Order Section */
.order-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2C1810 0%, #4A2C1A 100%);
    color: white;
    position: relative;
}

.order-section::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="50" cy="50" r="1" fill="%23F4E4BC" opacity="0.1"/></svg>') repeat;
    background-size: 30px 30px;
}

.order-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
    color: #F4E4BC;
    position: relative;
    z-index: 1;
}

.order-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.order-info h3, .order-form h3 {
    color: #F4E4BC;
    margin-bottom: 30px;
    font-size: 1.5em;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.contact-method strong {
    color: #F4E4BC;
    font-size: 1.3em;
}

.order-steps h4 {
    color: #F4E4BC;
    margin-bottom: 15px;
}

.order-steps ol {
    padding-left: 20px;
}

.order-steps li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.order-form {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #F4E4BC;
    font-weight: bold;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: rgba(255,255,255,0.9);
    color: #333;
    font-size: 1em;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(244, 228, 188, 0.3);
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF 0%, #F5F5DC 100%);
    position: relative;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%), 
                radial-gradient(circle at 70% 30%, rgba(255, 105, 180, 0.1) 0%, transparent 50%);
}

.reviews h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
    color: #8B4513;
    position: relative;
    z-index: 1;
}

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

.review-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 5px solid #FFD700;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    flex-shrink: 0;
}

.review-card h4 {
    color: #8B4513;
    margin-bottom: 5px;
}

.stars {
    color: #FFD700;
    font-size: 1.2em;
}

.review-card p {
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

/* Newsletter Section */
.newsletter {
    padding: 60px 0;
    background: linear-gradient(135deg, #4169E1 0%, #1E90FF 100%);
    color: white;
    position: relative;
}

.newsletter::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"><rect x="30" y="30" width="40" height="40" fill="none" stroke="%23FFF" stroke-width="1" opacity="0.1"/></svg>') repeat;
    background-size: 80px 80px;
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.newsletter-text {
    flex: 1;
}

.newsletter h2 {
    font-size: 2.2em;
    margin-bottom: 15px;
}

.newsletter-form {
    flex: 1;
    max-width: 500px;
}

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

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 25px;
    font-size: 1em;
}

.newsletter-form button {
    padding: 15px 30px;
    background: #32CD32;
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #228B22;
    transform: translateY(-2px);
}

.newsletter-checkbox {
    font-size: 0.9em;
    opacity: 0.9;
}

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

.newsletter-checkbox a {
    color: #F4E4BC;
    text-decoration: underline;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8F8FF 0%, #E6E6FA 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(65, 105, 225, 0.05) 50%, transparent 60%);
}

.contact h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
    color: #8B4513;
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

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

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.contact-icon {
    flex-shrink: 0;
}

.contact-item h4 {
    color: #8B4513;
    margin-bottom: 5px;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-item small {
    color: #999;
    font-size: 0.9em;
}

.social-media h4 {
    color: #8B4513;
    margin-bottom: 20px;
    font-size: 1.3em;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2) rotate(5deg);
}

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

.footer::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="50" cy="50" r="0.5" fill="%23F4E4BC" opacity="0.1"/></svg>') repeat;
    background-size: 40px 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-section h4 {
    color: #F4E4BC;
    margin-bottom: 20px;
    font-size: 1.2em;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #999;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, #8B4513 0%, #D4A574 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5em;
    }
    
    .order-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
    }
    
    .hero-features .feature {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2em;
    }
    
    .hero p {
        font-size: 1.1em;
    }
    
    .services h2, .products h2, .reviews h2, .contact h2 {
        font-size: 2em;
    }
    
    .info-grid, .services-grid, .product-categories, .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .info-card, .service-card, .order-form {
        padding: 25px;
    }
}