/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    background-color: #fff;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo h1 {
    font-size: 1.5rem;
    color: #333;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

/* Hero section */
.hero {
    height: 100vh;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Sections */
section {
    padding: 4rem 2rem;
}

/* Contact section */
.contact-info {
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 2px 0;
    transition: 0.4s;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    padding: 1rem;
    margin: 0;
    color: #333;
}

.product-card p {
    padding: 0 1rem 1rem;
    color: #666;
}

/* Logo styles */
.logo img {
    height: 40px;
    width: auto;
}

/* About section styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Category showcase */
.category-showcase {
    margin-top: 3rem;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.category-showcase img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
        position: absolute;
        right: 1rem;
        top: 1rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    section {
        padding: 2rem 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .category-showcase img {
        height: 200px;
    }
}

/* Footer styles */
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 0.5rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Policy pages styles */
.policy-content {
    max-width: 800px;
    margin: 80px auto 2rem;
    padding: 2rem;
}

.policy-section {
    margin-bottom: 2rem;
}

.policy-section h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.policy-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #444;
}

.policy-section p, 
.policy-section ul {
    margin-bottom: 1rem;
    color: #666;
}

.policy-section ul {
    padding-left: 2rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
}

/* Responsive adjustments for policy pages */
@media screen and (max-width: 768px) {
    .policy-content {
        padding: 1rem;
        margin-top: 60px;
    }

    .policy-section h1 {
        font-size: 2rem;
    }

    .policy-section h2 {
        font-size: 1.3rem;
    }
} 