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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Header with Logo */
.site-header {
    background-color: #000;
    padding: 30px 0;
    border-bottom: 5px solid #fff;
}

.logo-container {
    text-align: center;
}

.main-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Navigation */
.navbar {
    background-color: #000;
    color: #fff;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

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

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    letter-spacing: 2px;
    padding: 10px 0;
    border-bottom: 3px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    border-bottom: 3px solid #fff;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 20px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: #fff;
    margin: 4px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: #000;
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: #fff;
    font-weight: 300;
    letter-spacing: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 2px;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-primary {
    background-color: #fff;
    color: #000;
    border: 3px solid #fff;
}

.btn-primary:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background-color: #000;
    color: #fff;
    width: 100%;
    border: 3px solid #000;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #000;
    border: 3px solid #000;
}

.btn-outline {
    background-color: transparent;
    color: #000;
    border: 3px solid #000;
}

.btn-outline:hover {
    background-color: #000;
    color: #fff;
}

/* Section Titles */
.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Featured Products Section */
.featured-products {
    padding: 100px 0;
    background-color: #f5f5f5;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 4rem;
}

.product-card {
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 3px solid #000;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.product-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: #fff;
    border-bottom: 3px solid #000;
}

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

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: bold;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.product-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: #000;
    color: #fff;
    text-align: center;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.9;
    font-weight: 300;
}

/* Newsletter Section */
.newsletter {
    padding: 100px 0;
    background-color: #f5f5f5;
    text-align: center;
}

.newsletter p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #666;
    font-weight: 300;
}

.newsletter-form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 18px 25px;
    border: 3px solid #000;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #333;
}

/* Footer */
.footer {
    background-color: #000;
    color: #fff;
    padding: 80px 0 30px;
    border-top: 5px solid #fff;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo-section {
    text-align: center;
}

.footer-logo {
    max-width: 250px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 25px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.footer-section p {
    font-weight: 300;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 300;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #999;
    font-weight: 300;
}

.footer-bottom a {
    color: #ddd;
    text-decoration: none;
}

/* Page Header */
.page-header {
    background-color: #000;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: 4px;
    font-weight: bold;
    text-transform: uppercase;
}

.page-header p {
    font-size: 1.3rem;
    color: #ddd;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background-color: #f5f5f5;
}

/* About Content Section */
.about-content-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: bold;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text p {
    margin-bottom: 1.8rem;
    line-height: 1.9;
    color: #555;
    font-size: 1.05rem;
}

.about-image img {
    width: 100%;
    border: 5px solid #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background-color: #f5f5f5;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.value-card {
    background-color: #fff;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 3px solid #000;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: bold;
}

.value-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: #000;
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    font-weight: bold;
    text-transform: uppercase;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: bold;
}

.info-item {
    margin-bottom: 35px;
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item p,
.info-item a {
    color: #666;
    text-decoration: none;
    line-height: 1.8;
    font-size: 1.05rem;
}

.info-item a:hover {
    color: #000;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 3px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000;
}

.form-group textarea {
    resize: vertical;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: #f5f5f5;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.faq-item {
    background-color: #fff;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 3px solid #000;
    transition: transform 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 18px;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-logo {
        max-width: 250px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: #000;
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        padding: 80px 20px 20px;
        gap: 30px;
        justify-content: flex-start;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-wrapper {
        justify-content: space-between;
        padding: 15px 20px;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .btn {
        padding: 15px 35px;
        font-size: 1rem;
    }

    .footer-logo {
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .main-logo {
        max-width: 200px;
    }
}
