/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #E0DED9;
    background-color: #1A1A1A;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #3F3730;
}

.nav {
    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: 1rem;
}

.logo {
    position: relative;
}

.logo-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8C734B, #D4C7B8);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(140, 115, 75, 0.3);
}

.logo-circle::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #3F3730;
    z-index: 1;
}

.logo-pallets {
    position: relative;
    z-index: 2;
    width: 30px;
    height: 20px;
    background: #D4C7B8;
    border-radius: 2px;
    box-shadow: 
        0 0 0 2px #8C734B,
        0 8px 0 #D4C7B8,
        0 16px 0 #D4C7B8;
}

.brand-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #E0DED9;
    margin: 0;
}

.brand-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 1.2rem;
    color: #E0DED9;
    margin: 0;
    position: relative;
}

.brand-subtitle::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    width: 15px;
    height: 1px;
    background: #E0DED9;
    transform: translateY(-50%);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #E0DED9;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #D4C7B8;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4C7B8;
    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: #E0DED9;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1A1A1A 0%, #3F3730 100%);
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: grayscale(100%) brightness(0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h2 {
    font-size: 3rem;
    font-weight: 300;
    color: #E0DED9;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: #D4C7B8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #8C734B, #D4C7B8);
    color: #1A1A1A;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(140, 115, 75, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(140, 115, 75, 0.4);
}

.hero-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.05);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #1A1A1A;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    color: #E0DED9;
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #8C734B, #D4C7B8);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.service-item {
    text-align: center;
    padding: 2rem;
    background: rgba(63, 55, 48, 0.3);
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(140, 115, 75, 0.2);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(140, 115, 75, 0.2);
}

.service-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-img:hover {
    transform: scale(1.1);
}

.service-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #E0DED9;
}

/* History Section */
.history {
    padding: 100px 0;
    background: linear-gradient(135deg, #3F3730 0%, #1A1A1A 100%);
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.history-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #E0DED9;
    margin-bottom: 2rem;
    position: relative;
}

.history-text h2::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #8C734B, #D4C7B8);
}

.history-text p {
    font-size: 1.2rem;
    color: #D4C7B8;
    line-height: 1.8;
}

.history-text strong {
    color: #D4C7B8;
    font-weight: 600;
}

.history-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.history-img:hover {
    transform: scale(1.05);
}

/* Company Section */
.company {
    padding: 100px 0;
    background: #1A1A1A;
}

.company-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.company-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #E0DED9;
    margin-bottom: 2rem;
    position: relative;
}

.company-text h2::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #8C734B, #D4C7B8);
}

.company-text p {
    font-size: 1.2rem;
    color: #D4C7B8;
    line-height: 1.8;
}

.company-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.company-img:hover {
    transform: scale(1.05);
}

/* Process Section */
.process {
    padding: 100px 0;
    background: linear-gradient(135deg, #3F3730 0%, #1A1A1A 100%);
}

.process-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.process-image {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.process-image:hover {
    transform: scale(1.02);
}

.process-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.process-img:hover {
    transform: scale(1.05);
}

/* Products Section */
.products {
    padding: 100px 0;
    background: #1A1A1A;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.product-image {
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.product-image:hover {
    transform: scale(1.05);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-img:hover {
    transform: scale(1.1);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #3F3730 0%, #1A1A1A 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #E0DED9;
    margin-bottom: 0.5rem;
}

.contact-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: #E0DED9;
    margin-bottom: 3rem;
    position: relative;
}

.contact-subtitle::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    width: 15px;
    height: 1px;
    background: #E0DED9;
    transform: translateY(-50%);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #D4C7B8;
}

.contact-item a {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #D4C7B8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #E0DED9;
}

.contact-item i {
    font-size: 1.5rem;
    color: #8C734B;
    width: 30px;
    text-align: center;
    transition: color 0.3s ease;
}

.contact-item a:hover i {
    color: #D4C7B8;
}

.contact-item i.fa-whatsapp {
    color: #25D366;
}

.contact-item a:hover i.fa-whatsapp {
    color: #20c55e;
}

.contact-item a:hover i.fa-envelope {
    color: #D4C7B8;
}

.contact-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.contact-img:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: #1A1A1A;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #3F3730;
}

.footer p {
    color: #8C734B;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .history-content,
    .company-content,
    .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .process-images {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 1rem;
    }
    
    .hero {
        padding: 120px 0 50px;
    }
    
    .hero-text h2 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text,
.service-item,
.history-text,
.company-text,
.contact-info {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
