* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #8B6F47;
    --secondary: #D4A574;
    --accent: #E8C99B;
    --light: #FAF8F3;
    --dark: #2a2a2a;
    --text: #4a4a4a;
    --white: #ffffff;
    --overlay: rgba(139, 111, 71, 0.15);
    --overlay-dark: rgba(139, 111, 71, 0.25);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(139, 111, 71, 0.08);
    border-bottom: 1px solid rgba(139, 111, 71, 0.1);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 0.5rem 5%;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 32px rgba(139, 111, 71, 0.12);
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a.active {
    color: var(--primary);
}

.nav-links a.active::after {
    width: 100%;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
/* Hero Section */
.hero {
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Background Image */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("BAckgroundhero.png") center/cover no-repeat;
    filter: blur(6px);
    transform: scale(1.05);
    z-index: 1;
}

/* Overlay */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}



@keyframes move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 3;   /* Keep this */
    animation: fadeInUp 1s ease;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 600;
    line-height: 1.2;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 111, 71, 0.3);
    border: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 111, 71, 0.4);
    background: rgba(212, 165, 116, 0.95);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-indicator::before {
    content: "↓";
    font-size: 2rem;
    color: var(--white);
    opacity: 0.8;
}

/* Section Styles */
section {
    padding: 5rem 5%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.section-title.white {
    color: var(--white);
}

/* Products Section */
.products {
    background: linear-gradient(to bottom, rgba(250, 248, 243, 0.5), rgba(250, 248, 243, 0.8));
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(139, 111, 71, 0.1);
    border: 1px solid rgba(139, 111, 71, 0.15);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 20px 60px rgba(139, 111, 71, 0.15);
    border-color: rgba(139, 111, 71, 0.25);
}

.product-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.product-card p {
    color: #666;
    line-height: 1.8;
}

.product-expanded {
    margin-top: 1rem;
    animation: fadeIn 0.3s ease;
}

.product-expanded p {
    font-size: 0.95rem;
    color: #666;
}

.read-more-btn {
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.read-more-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 111, 71, 0.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Section */
.features {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: rgba(250, 248, 243, 0.5);
    backdrop-filter: blur(5px);
}

.feature-item:hover {
    background: rgba(212, 165, 116, 0.15);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(139, 111, 71, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* About Section */
.about {
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.about-content p {
    margin-bottom: 1.5rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(139, 111, 71, 0.1);
    border: 1px solid rgba(139, 111, 71, 0.15);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 40px rgba(139, 111, 71, 0.15);
    border-color: rgba(139, 111, 71, 0.25);
}

.about-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(to bottom, rgba(250, 248, 243, 0.8), rgba(250, 248, 243, 0.95));
    color: var(--text);
    position: relative;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(139, 111, 71, 0.15);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(139, 111, 71, 0.1);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 111, 71, 0.15);
    border-color: rgba(139, 111, 71, 0.25);
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: var(--primary);
    display: flex;
    align-items: center;
}

.contact-item h4 svg {
    color: var(--primary);
}

.contact-item p {
    color: var(--text);
}

.contact-item a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.contact-form {
    max-width: 600px;
    margin: 3rem auto 0;
    background: rgba(255, 255, 255, 0.12);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(139, 111, 71, 0.15);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(230, 184, 92, 0.3);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: rgba(232, 201, 155, 0.9);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 111, 71, 0.2);
}

.submit-btn:hover {
    background: rgba(212, 165, 116, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 111, 71, 0.3);
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1rem 0;
}

.social-links a {
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    transform: scale(1.2);
    background: rgba(255, 255, 255, 0.2);
}

.social-links a svg {
    width: 24px;
    height: 24px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.9) 0%, rgba(212, 165, 116, 0.85) 100%);
    color: var(--white);
    padding: 0 5%;
    text-align: center;
    margin-top: 70px;
    position: relative;
    min-height: 500px;
    height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow: hidden;
}

@media (max-width: 768px) {
    .page-header {
        padding: 0 5%;
        height: 70vh;
        min-height: 500px;
    }
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.4) 0%, rgba(212, 165, 116, 0.35) 50%, rgba(232, 201, 155, 0.3) 100%);
    z-index: 0;
}

.page-header h1,
.page-header p {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.contact-header,
.products-header,
.about-header {
    height: 40vh;
    min-height: 250px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px) {
    /* Navigation Mobile */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 0;
        box-shadow: -5px 0 30px rgba(139, 111, 71, 0.2);
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(139, 111, 71, 0.1);
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        width: 100%;
    }

    nav {
        padding: 0.75rem 5%;
    }

    .logo img {
        height: 35px;
    }

    .logo {
        font-size: 1.3rem;
    }

    /* Hero Section Mobile */
    .hero {
        padding: 0 5%;
        height: 70vh;
        min-height: 500px;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    /* Sections Mobile */
    section {
        padding: 3rem 5%;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .page-header {
        padding: 0 5%;
        height: 70vh;
        min-height: 500px;
    }

    .contact-header,
    .products-header,
    .about-header {
        height: 35vh;
        min-height: 200px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    /* Grids Mobile */
    .products-grid,
    .features-grid,
    .about-grid,
    .image-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card {
        padding: 1.5rem;
    }

    .product-image {
        height: 180px;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .about-card {
        padding: 1.5rem;
    }

    /* Contact Mobile */
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-item {
        padding: 1.25rem;
    }

    .contact-content {
        padding: 0 1rem;
    }

    /* About Content Mobile */
    .about-content {
        padding: 0 1rem;
        font-size: 1rem;
    }

    .about-image {
        max-width: 100%;
        height: auto;
    }

    /* Footer Mobile */
    footer {
        padding: 1.5rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-links a {
        padding: 0.6rem;
    }

    .social-links a svg {
        width: 22px;
        height: 22px;
    }

    /* Typography Mobile */
    .product-card h3 {
        font-size: 1.3rem;
    }

    .product-card p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .read-more-btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
        min-height: 44px; /* Better touch target */
    }

    /* Gallery Mobile */
    .gallery-item {
        aspect-ratio: 1;
    }

    /* Better touch targets */
    a, button {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .cta-button {
        min-height: 48px;
    }

    /* Improved spacing */
    .hero-content {
        padding: 0 1rem;
    }

    .about-content img {
        margin: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 80px;
        height: 60vh;
        min-height: 400px;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.9rem 1.75rem;
        font-size: 0.9rem;
    }

    .page-header {
        padding-top: 80px;
        height: 60vh;
        min-height: 400px;
    }

    .contact-header,
    .products-header,
    .about-header {
        height: 30vh;
        min-height: 180px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    section {
        padding: 2.5rem 4%;
    }

    nav {
        padding: 0.6rem 4%;
    }

    .nav-links {
        width: 100%;
        right: -100%;
    }

    .product-card,
    .feature-item,
    .about-card {
        padding: 1.25rem;
    }

    .contact-item {
        padding: 1rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Fade in on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(139, 111, 71, 0.12);
    border: 1px solid rgba(139, 111, 71, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 111, 71, 0.2);
    border-color: rgba(139, 111, 71, 0.25);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.about-image {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    margin: 1rem auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}
