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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Header Bar */
.top-header {
    background-color: #443317;
    color: white;
    padding: 8px 0;
    font-size: 14px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info, .website-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #f2eea5;
}

.contact-info i, .website-info i {
    font-size: 12px;
    color: #f2eea5;
}

.contact-info span, .website-info span {
    color: #f2eea5;
}

.right-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
}

.social-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}



/* Main Header */
.main-header {
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.nav-menu a {
    text-decoration: none;
    color: #443317;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: #f2eea5;
    color: #443317;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    color: #443317;
    cursor: pointer;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    margin-top: 120px; /* Reduced margin to eliminate gap */
}

.page {
    display: none;
}

.page.active {
    display: block;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.3);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(68, 51, 23, 0.9) 30%, rgba(68, 51, 23, 0.3) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    text-align: left;
    padding: 50px;
}

.hero-text {
    text-align: left;
    color: white;
    max-width: 500px;
}

.hero-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.1;
}

.hero-text p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.4;
}

.hero-text .subtitle {
    font-size: 14px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.3;
}

.hero-text .cta-button {
    display: inline-block;
    background-color: #F0F8C0;
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    min-width: 180px;
}

.hero-text .cta-button:hover {
    background-color: #e6e295;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 0 20px;
}

.section-header i {
    font-size: 24px;
    color: #f2eea5;
    margin-bottom: 15px;
    display: block;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 600;
    color: #443317;
    margin: 0;
}

.why-choose-us .section-header h2 {
    color: #443317;
}

.why-choose-us .section-header i {
    color: #443317
}

/* Why Choose Us Section */
.why-choose-us {
    color: white;
}

.why-choose-us .section-header {
    background-color: white;
    color: #8B4513;
    padding: 40px 0;
    margin-bottom: 0;
}

.why-choose-content {
    background-color: #443317;
    padding: 60px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.content-column p {
    font-size: 16px;
    line-height: 1.8;
    color: white;
}

/* Products Overview Section */
.products-overview {
    padding: 60px 0;
    background-color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.product-category {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.product-category h3 {
    font-size: 24px;
    font-weight: 600;
    color: #443317;
    margin-bottom: 15px;
}

.product-category p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Product Introduction */
.product-intro {
    padding: 60px 0;
    background-color: white;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.intro-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.intro-text h2 {
    font-size: 32px;
    font-weight: 600;
    color: #443317;
    margin-bottom: 20px;
}

.intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

/* Products List */
.products-list {
    padding: 60px 0;
    background-color: #F5F5DC;
}

.products-list .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    align-items: stretch;
}

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

.product-image {
    width: 200px;
    min-width: 200px;
    height: auto;
    overflow: hidden;
}

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

.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #443317;
    margin-bottom: 10px;
}

.price {
    font-size: 18px;
    font-weight: 600;
    color: #FF6B35;
    margin-bottom: 15px;
}

.product-info p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
    color: #333;
}

/* Production Process */
.production-process {
    padding: 60px 0;
    background-color: white;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-card {
    background: #F5F5DC;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.process-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #443317;
    margin-bottom: 15px;
}

.process-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

/* Map Section */
.map-section {
    height: 400px;
    position: relative;
    overflow: hidden;
}

.map-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.8) contrast(1.2);
}

.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FF0000;
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.map-marker i {
    font-size: 16px;
}

/* Contact Info Section */
.contact-info-section {
    padding: 60px 0;
    background-color: #F5F5DC;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-column {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #443317;
    margin-bottom: 15px;
}

.contact-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 8px;
}

/* Footer */
.footer {
    background-color: #443317;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #f2eea5;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
    color: #f2eea5;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.copyright p {
    font-size: 12px;
    color: #f2eea5;
}

.footer-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Responsive Design */

/* Large PC Screens (1200px and above) */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    
    .main-content {
        margin-top: 130px;
    }
    
    .hero-section {
        height: 500px;
    }
    
    .hero-text h2 {
        font-size: 56px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .why-choose-us .section-header {
        padding: 50px 0;
    }
    
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .products-list .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Laptop Screens (768px to 1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
    .container {
        max-width: 960px;
    }
    
    .main-content {
        margin-top: 110px;
    }
    
    .hero-section {
        height: 350px;
    }
    
    .hero-text h2 {
        font-size: 36px;
    }
    
    .why-choose-us .section-header {
        padding: 40px 0;
    }
    
    .content-grid,
    .products-grid {
        gap: 30px;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .products-list .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Screens (up to 767px) */
@media (max-width: 767px) {
    .container {
        padding: 0 15px;
    }
    
    .top-header {
        padding: 8px 0;
        font-size: 12px;
        
    }
    
    .top-header-content {
        flex-direction: row;
        gap: 5px;
    }
    
    .right-info {
        flex-direction:row;
        gap: 5px;
    }
    
    .social-icon img {
        width: 18px;
        height: 18px;
    }
    
    .main-header {
        padding: 10px 0;
        position: fixed;
        top: 35px;
        left: 0;
        right: 0;
        z-index: 1000;
    }
    
    .main-content {
        margin-top: 100px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo img {
        height: 32px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: block;
        width: 100%;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-menu a {
        display: block;
        text-align: center;
        padding: 12px;
    }
    
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        top: 15px;
        right: 20px;
    }
    
    .hero-section {
        height: 250px;
    }
    
    .hero-text h2 {
        font-size: 24px;
    }
    
    .hero-text p {
        font-size: 14px;
    }
    
    .hero-text .subtitle {
        font-size: 12px;
    }
    
    .hero-text .cta-button {
        padding: 8px 16px;
        font-size: 11px;
    }
    
    .hero-overlay {
        padding-left: 30px;
    }
    
    .section-header {
        padding: 30px 0 15px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .why-choose-us .section-header {
        padding: 30px 0;
    }
    
    .why-choose-us,
    .products-overview,
    .product-intro,
    .products-list,
    .production-process,
    .contact-info-section {
        padding: 40px 0;
    }
    
    .content-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .intro-text h2 {
        font-size: 24px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .products-list .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        flex-direction: column;
    }
    
    .product-image {
        width: 100%;
        height: 200px;
        min-width: auto;
    }
    
    .map-section {
        height: 250px;
    }
    
    .map-marker {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Small Mobile Screens (up to 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-section {
        height: 200px;
    }
    
    .hero-text h2 {
        font-size: 28px;
    }
    
    .hero-text p {
        font-size: 12px;
    }
    
    .hero-text .subtitle {
        font-size: 10px;
    }
    
    .hero-text .cta-button {
        padding: 10px 25px;
        font-size: 12px;
        min-width: 140px;
    }
    
    .hero-overlay {
        padding: 30px;
    }
    
    .section-header h2 {
        font-size: 20px;
    }
    
    .why-choose-us .section-header {
        padding: 25px 0;
    }
    
    .product-category,
    .process-card,
    .contact-column {
        padding: 20px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-info h3 {
        font-size: 18px;
    }
    
    .product-card {
        flex-direction: column;
    }
    
    .product-image {
        width: 100%;
        height: 180px;
        min-width: auto;
    }
    
    .price {
        font-size: 16px;
    }
    
    .map-marker {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .map-marker i {
        font-size: 14px;
    }
    
    .footer-icon img {
        width: 20px;
        height: 20px;
    }
    
    .social-icon img {
        width: 16px;
        height: 16px;
    }
    
    .logo img {
        height: 28px;
    }
    
    .hero-overlay {
        padding: 20px;
    }
}

/* Smooth transitions for page switching */
.page {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.page.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hover effects */
.nav-menu a:hover {
    transform: translateY(-2px);
}

.product-card:hover {
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.process-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Loading animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page.active {
    animation: fadeIn 0.5s ease-out;
} 