/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-orange: #FF6B00;
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-gray: #2A2A2A;
    --color-light-gray: #F5F5F5;
    --color-border: #E0E0E0;
    --color-dark-gray: #333333;

    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Roboto', sans-serif;

    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--color-gray);
    line-height: 1.6;
    background-color: var(--color-white);
    overflow-x: hidden;
    padding-top: 70px;
}

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

/* ===== HEADER ===== */
.header {
    background-color: var(--color-black);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.logo-container {
    position: relative;
    width: auto;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo-link {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo {
    width: auto;
    height: 100%;
    object-fit: contain;
    max-width: 120px;
}

/* ===== NAVIGATION ===== */
.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--color-white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-orange);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-orange);
}

/* ===== HERO SECTION ===== */
.hero {
    background-color: var(--color-light-gray);
    padding: 80px 0;
    margin-bottom: 60px;
}

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

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 700;
    color: var(--color-black);
    line-height: 1.2;
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-gray);
}

.hero-image {
    position: relative;
    width: 100%;
    height: 400px;
    background-color: var(--color-border);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img,
.category-image img,
.product-image img,
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== CTA BUTTON ===== */
.cta-button {
    display: inline-block;
    background-color: var(--color-orange);
    color: var(--color-white);
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-primary);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    width: fit-content;
}

.cta-button:hover {
    background-color: #E55A00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

/* ===== SECTIONS ===== */
.section-title {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-black);
    text-align: center;
    margin-bottom: 50px;
}

/* ===== CATEGORIES SECTION ===== */
.categories {
    padding: 60px 0;
    margin-bottom: 0;
}

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

.category-box {
    background-color: var(--color-light-gray);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.category-image {
    position: relative;
    width: 100%;
    height: 250px;
    background-color: var(--color-border);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-title {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    padding: 20px;
    color: var(--color-black);
    text-align: center;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: 60px 0 30px;
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    padding: 40px;
    background-color: var(--color-light-gray);
    border-radius: 10px;
}

.showcase-image {
    position: relative;
    width: 100%;
    height: 300px;
    background-color: var(--color-border);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.showcase-content h2 {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 20px;
}

.showcase-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-gray);
}

.product-showcase:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.product-category {
    margin-bottom: 60px;
}

.category-subtitle {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-orange);
}

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

.product-card {
    background-color: var(--color-light-gray);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.product-image {
    position: relative;
    width: 100%;
    height: 250px;
    background-color: var(--color-border);
    overflow: hidden;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 10px;
}

.product-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 60px 0;
    background-color: var(--color-light-gray);
    margin-bottom: 0;
}

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

.about-text h3 {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 15px;
}

.about-image {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--color-orange) 0%, #E55A00 100%);
    color: var(--color-white);
    padding: 60px 0;
    text-align: center;
    margin-bottom: 0;
}

.cta-section h2 {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-section .cta-button {
    background-color: var(--color-white);
    color: var(--color-orange);
}

.cta-section .cta-button:hover {
    background-color: #F0F0F0;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 80px 0;
}

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

.contact-form-wrapper h2,
.contact-info h2 {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-gray);
    font-family: var(--font-primary);
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--color-border);
    border-radius: 5px;
    font-family: var(--font-secondary);
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-orange);
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.2);
}

.submit-button {
    background-color: var(--color-orange);
    color: var(--color-white);
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    font-size: 16px;
}

.submit-button:hover {
    background-color: #E55A00;
    transform: translateY(-2px);
}

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

.info-item h3 {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 10px;
}

.info-item p,
.info-item a {
    font-size: 14px;
    color: var(--color-gray);
    line-height: 1.8;
    text-decoration: none;
}

.info-item a:hover {
    color: var(--color-orange);
}

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

.social-links a {
    display: inline-block;
    padding: 8px 15px;
    background-color: var(--color-light-gray);
    border-radius: 5px;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--color-orange);
    color: var(--color-white);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--color-black);
    padding: 60px 0 20px;
    color: var(--color-white);
    margin-top: 0;
}

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

.footer-section h4 {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-orange);
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--color-orange);
}

.footer-social-icon {
    margin-top: 15px;
    display: flex;
    gap: 12px;
}

.footer-social-icon .social-link {
    display: inline-block;
    width: 24px;
    height: 24px;
    color: var(--color-white);
    transition: var(--transition);
}

.footer-social-icon .social-link:hover {
    color: var(--color-orange);
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

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

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    color: var(--color-white);
    transition: var(--transition);
}

.social-link:hover {
    color: var(--color-orange);
    transform: scale(1.2);
}

.social-icon {
    width: 100%;
    height: 100%;
}

.footer-copyright {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-copyright {
        text-align: center;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }

    .header {
        padding: 10px 0;
    }

    .logo {
        max-width: 120px;
    }

    .hamburger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--color-black);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav.active {
        max-height: 300px;
    }

    .nav-link {
        padding: 15px 0;
        font-size: 14px;
        display: block;
    }

    .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-image,
    .about-image {
        height: 300px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .categories-grid,
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }

    .category-image,
    .product-image {
        height: 200px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .product-showcase {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: unset !important;
        padding: 20px;
        margin-bottom: 30px;
        gap: 20px;
    }

    .showcase-image {
        width: 100%;
        order: -1;
        height: 250px;
    }

    .showcase-content {
        width: 100%;
    }

    .showcase-content h2 {
        font-size: 20px;
    }

    .showcase-content p {
        font-size: 14px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .nav {
        flex-direction: column;
        gap: 10px;
        font-size: 11px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px;
    }

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

    .footer-social {
        gap: 20px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.in-view {
    animation: slideInUp 0.8s ease forwards;
}

.animate-on-scroll.in-view.delay-1 {
    animation-delay: 0.5s;
}

.category-box,
.product-card,
.product-showcase {
    animation: slideInUp 0.6s ease forwards;
}

.hero-content {
    animation: fadeIn 0.8s ease;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}
