/* Reset & Base Styles */
:root {
    --primary-color: #ff6b00;
    /* Industrial Orange */
    --secondary-color: #fdd835;
    /* Safety Yellow - for accents */
    --bg-dark: #121212;
    --bg-card: #1e1e1e;
    --text-light: #f5f5f5;
    --text-gray: #a0a0a0;
    --border-color: #333;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Oswald', sans-serif;
    --container-width: 1200px;
    --header-height: 80px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: #e65100;
    transform: translateY(-2px);
}

.section {
    padding: 100px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    margin-top: 10px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 600px;
}

/* Header */
.header {
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

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

.logo img {
    height: 50px;
    /* Adjust based on actual logo aspect ratio */
    /* filter: brightness(0) invert(1); Removed to show original logo colors */
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('assets/hero-bg.png');
    /* Custom MultMantas fabric background */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--header-height);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    /* Added shadow for contrast */
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #f5f5f5;
    /* Changed from text-gray to light for better visibility */
    margin-bottom: 3rem;
    font-weight: 400;
    /* Increased weight slightly */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    /* Added shadow */
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 3rem;
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    background: rgba(0, 0, 0, 0.4);
    /* Added semi-transparent background */
    padding: 20px;
    /* Added padding for the background */
    border-radius: 0 8px 8px 0;
    /* Rounded corners on the right */
    backdrop-filter: blur(5px);
    /* subtle blur */
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.stat-label {
    font-size: 0.9rem;
    color: #e0e0e0;
    /* Lighter than text-gray */
    text-transform: uppercase;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

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

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

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

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.product-info p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Quality Section */
.quality-section {
    background-color: #1a1a1a;
}

.quality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.quality-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.quality-text strong {
    color: var(--primary-color);
}

.clients-area h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.client-badge {
    background-color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #ccc;
    border: 1px solid transparent;
    transition: var(--transition);
}

.client-badge:hover {
    border-color: var(--primary-color);
    color: #fff;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

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

.info-item h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.info-item p {
    color: var(--text-gray);
    margin-bottom: 5px;
}

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

.map-placeholder {
    width: 100%;
    height: 300px;
    background-color: #252525;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.map-placeholder span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-gray);
}

/* Footer */
.footer {
    background-color: #000;
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    /* filter: brightness(0) invert(1); Removed to show original logo colors */
    opacity: 0.7;
}

.copyright {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .quality-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #1a1a1a;
        padding: 100px 40px;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
    }
}
/* About Section */
.about-section {
    background-color: #1a1a1a;
    position: relative;
}

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

.about-item {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}

.about-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.about-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-item h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.about-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}
