* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #faf6f0;
    color: #3d2314;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER STYLES */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3d2314;
    background: linear-gradient(135deg, #3d2314 0%, #8b5a2d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.footer-logo h3 {
    color: white;
    font-size: 1.2rem;
    margin: 0;
}

.hamburger-menu {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #3d2314;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-list {
    display: none;
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    gap: 1rem;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-list.active {
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.nav-link {
    text-decoration: none;
    color: #3d2314;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #8b5a2d 0%, #d4a574 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    background: linear-gradient(135deg, #8b5a2d 0%, #d4a574 100%);
    color: white;
}

/* HERO SECTION */
.hero {
    margin-top: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #faf6f0 0%, #f5e6d3 100%);
    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="40" fill="none" stroke=%23f5e6d3 stroke-width="0.5"/></svg>');
    opacity: 0.3;
}

.hero-container {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    color: #3d2314;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #3d2314 0%, #8b5a2d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #8b5a2d;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* BUTTON STYLES */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #8b5a2d 0%, #d4a574 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 90, 45, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 90, 45, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #8b5a2d;
    border: 2px solid #8b5a2d;
}

.btn-secondary:hover {
    background: #8b5a2d;
    color: white;
    transform: translateY(-2px);
}

/* MENU SECTION */
.menu {
    padding: 4rem 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: #3d2314;
    margin-bottom: 3rem;
    font-weight: 700;
}

.menu-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #f5e6d3;
    background: transparent;
    color: #8b5a2d;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, #8b5a2d 0%, #d4a574 100%);
    color: white;
    border-color: #8b5a2d;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 250px;
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.product-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-overlay:hover {
    opacity: 1;
}

.overlay-text {
    color: white;
    font-weight: 600;
    text-align: center;
    padding: 1rem;
    font-size: 1.1rem;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.25rem;
    color: #3d2314;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-description {
    color: #8b5a2d;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.add-to-order-btn {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(135deg, #8b5a2d 0%, #d4a574 100%);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.add-to-order-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(139, 90, 45, 0.3);
}

/* ORDER PREVIEW */
.order-preview {
    padding: 3rem 0;
    background: linear-gradient(135deg, #faf6f0 0%, #f5e6d3 100%);
}

.order-preview-title {
    font-size: 2rem;
    text-align: center;
    color: #3d2314;
    margin-bottom: 2rem;
    font-weight: 600;
}

.order-items {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.empty-order {
    text-align: center;
    color: #8b5a2d;
    font-style: italic;
}

.order-summary {
    text-align: center;
    margin-top: 2rem;
}

/* GALLERY */
.gallery {
    padding: 4rem 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.gallery-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    animation: fadeIn 0.3s ease;
}

.lightbox-modal.show {
    display: block;
}

.lightbox-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    max-width: 90%;
    margin: 0 auto;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.lightbox-caption {
    color: white;
    text-align: center;
    font-size: 1.1rem;
    max-width: 80%;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #d4a574;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.image-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #f5e6d3 0%, #faf6f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b5a2d;
}

/* TESTIMONIALS */
.testimonials {
    padding: 4rem 0;
    background: linear-gradient(135deg, #faf6f0 0%, #f5e6d3 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-content {
    margin-bottom: 1rem;
    color: #3d2314;
    font-style: italic;
}

.testimonial-author {
    color: #8b5a2d;
    font-weight: 500;
}

/* CONTACT */
.contact {
    padding: 4rem 0;
    background: white;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    text-align: center;
}

.contact-item h3 {
    color: #8b5a2d;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item a {
    color: #3d2314;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #8b5a2d;
}

/* FOOTER */
.footer {
    background: #3d2314;
    color: white;
    padding: 2rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo h3 {
    color: white;
    font-size: 1.2rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4a574;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .lightbox-img {
        max-width: 95%;
        max-height: 70vh;
    }

    .lightbox-caption {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .lightbox-img {
        max-width: 95%;
        max-height: 60vh;
    }

    .lightbox-caption {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}