/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s, color 0.3s;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Header Styles */
header {
    background-color: #14131365;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #f1ebeb;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #e7dddd;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #888;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: #f0eaea;
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle .fa-sun {
    display: none;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #faf6f6;
}

/* Mobile Sidebar Styles */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100%;
    background-color: white;
    z-index: 1100;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-sidebar.open {
    left: 0;
}

.sidebar-header {
    padding: 1rem;
    display: flex;
    justify-content: flex-end;
}

.close-sidebar {
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

.sidebar-links {
    list-style: none;
    padding: 1rem;
}

.sidebar-links li {
    margin-bottom: 1rem;
}

.sidebar-links a {
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s;
}

.sidebar-links a:hover {
    color: #888;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
     background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}


/* Content Animation */
.hero-content > * {
    opacity: 0;
    transform: translateY(20px);
}

.hero h1 {
    animation: slideUp 0.8s ease-out forwards 0.2s;
}

.hero p {
    animation: slideUp 0.8s ease-out forwards 0.4s;
}

.whatsapp-cta {
    animation: slideUp 0.8s ease-out forwards 0.6s;
}

.fixed-whatsapp {
    animation: slideUp 0.8s ease-out forwards 0.6s;
}

/* Keyframes */
@keyframes subtleZoom {
    0% { background-size: 100%; }
    100% { background-size: 105%; }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    color: #fff;
    width: 100%;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.whatsapp-cta {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.whatsapp-cta:hover {
    background-color: #128C7E;
}

.whatsapp-cta i {
    margin-right: 0.5rem;
}

/* Section Styles */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 5%;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #333;
}

/* About Section */
.about-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #555;
}

/* What We Do Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: #888;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Products Section */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card h3 {
    padding: 1rem 1rem 0.5rem;
    font-size: 1.2rem;
    color: #333;
}

.price {
    padding: 0 1rem;
    font-weight: bold;
    color: #333;
    font-size: 1.1rem;
}

.whatsapp-order {
    display: block;
    width: calc(100% - 2rem);
    margin: 1rem;
    padding: 0.8rem;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
}

.whatsapp-order:hover {
    background-color: #128C7E;
}

.whatsapp-order i {
    margin-right: 0.5rem;
}

/* Footer Styles */
footer {
    background-color: #f9f9f9;
    padding: 3rem 5% 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    text-decoration: none;
    color: #666;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #333;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: #333;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #666;
}

.copyright {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
    color: #666;
    font-size: 0.9rem;
}

/* Fixed WhatsApp Button */
.fixed-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: transform 0.3s, background-color 0.3s;
}

.fixed-whatsapp:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

/* Dark Mode Styles */
body.dark-mode {
    background-color: #121212;
    color: #f1f1f1;
}

.dark-mode header {
    background-color: #1e1e1e59;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.dark-mode .logo,
.dark-mode .nav-links a,
.dark-mode .hamburger,
.dark-mode .theme-toggle,
.dark-mode .close-sidebar,
.dark-mode .sidebar-links a,
.dark-mode h2,
.dark-mode .service-card h3,
.dark-mode .product-card h3,
.dark-mode .price,
.dark-mode .footer-logo {
    color: #f1f1f1;
}

.dark-mode .about-text p {
    color: #ccc;
}

.dark-mode .service-card,
.dark-mode .product-card {
    background-color: #1e1e1e;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.dark-mode .service-card p {
    color: #aaa;
}

.dark-mode footer {
    background-color: #1d1c1c;
}

.dark-mode .copyright {
    color: #aaa;
    border-top-color: #333;
}

.dark-mode .theme-toggle .fa-moon {
    display: none;
}

.dark-mode .theme-toggle .fa-sun {
    display: block;
}

.dark-mode .mobile-sidebar {
    background-color: #1e1e1e;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-image, .about-text {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-container {
        padding: 3rem 5%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}