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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #EDE5DC;
}

/* Header/Navigation */
header {
    background-color: #B8936A;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 4000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.logo-img {
    width: 68px;
    height: 68px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: rgb(255, 255, 255);
    transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    background-color:#c4a076;
    height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 1rem;
    overflow: hidden;
    margin: 0.7rem 0.5rem;
    border-radius: 10px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: 10px;
}
.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    color: #2C3E50;
    position: relative;
    z-index: 3;
}
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.322);
    z-index: 2;
}
.hero h1 {
    font-size: 44px;
    font-weight: 450;
    color: white;
    margin-bottom: 0.6rem;
    line-height: 1.1;
}

/* About Section */
.about {
    padding: 5rem 2rem;
    background-color: #F5F5F5;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about h2 {
    text-align: center;
    color: #B8936A;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 430;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.3rem;
    font-size: 1.3rem;
    color: #000000;
}

.about-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #6BA5C7 0%, #B8936A 50%, #D4A574 100%);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

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

/* Products Section */
.products {
    padding: 5rem 2rem;
    background-color: #EDE5DC;
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.products h2 {
    text-align: center;
    color: #B8936A;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 430;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.products-grid {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    margin-bottom: 2rem;
}

.product-card {
    min-width: calc(33.333% - 1.35rem);
    max-width: calc(33.333% - 1.35rem);
    flex-shrink: 0;
    background-color: #B8936A;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
}

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

.product-image {
    width: 100%;
    height: 280px;
    background-color: #8B7355;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    overflow: hidden;
}

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

.product-info {
    padding: 1.5rem;
    color: white;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.product-info p {
    font-size: 1rem;
    line-height: 1.5;
}

.carousel-btn {
    background-color: #B8936A;
    color: white;
    border: none;
    padding: 1rem 1.2rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background-color 0.3s;
    position: absolute;
    top: 46%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn-left {
    left: -40px;
}

.carousel-btn-right {
    right: -40px;
}

.carousel-btn:hover {
    background-color: #8B7355;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.carousel-dots {
    text-align: center;
    margin-top: 2rem;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #B8936A;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #686767;
}

/* Footer */
footer {
    background-color: #B8936A;
    color: white;
    padding: 3rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.footer-logo-icon {
    width: 65px;
    height: 65px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #6BA5C7;
}

.footer-logo-img {
    width: 68px;
    height: 68px;
    object-fit: contain;
}

.footer-contact h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.social-icon {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B8936A;
    text-decoration: none;
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #B8936A;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.2);
        padding: 2rem 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .hero h1 {
     font-size: 35px;
     font-weight: 500;
     color: white;
     margin-bottom: 0.6rem;
     line-height: 1.1;
    }

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

    .products-container {
        padding: 0 1rem;
    }

    .product-card {
        min-width: 100%;
        max-width: 100%;
    }

    .carousel-btn-left {
        left: -30px;
    }

    .carousel-btn-right {
        right: -30px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-logo {
        justify-content: center;
    }
    .social-links {
        justify-content: center;
    }
}