/* ========================================
   UTOPIA DIRECT - STYLESHEET
   Expertise - Innovation
   ======================================== */

:root {
    --primary-dark: #1a1a1a;
    --primary-black: #000000;
    --accent-white: #ffffff;
    --text-light: #666666;
    --text-dark: #333333;
    --border-light: #eeeeee;
    --hover-bg: #f5f5f5;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--accent-white);
}

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

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    background-color: var(--accent-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo {
    height: 90px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-black);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .logo {
        height: 40px;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('hero-background.png') center/cover no-repeat;
    background-attachment: fixed;
    color: var(--accent-white);
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-text {
    font-size: 1.2rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 20px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .hero-text {
        font-size: 1rem;
    }
}

/* ========================================
   BRANDS SECTION
   ======================================== */

.brands {
    padding: 80px 20px;
    background-color: var(--hover-bg);
}

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

.brands h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.brands-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.category {
    background-color: var(--accent-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.category-title {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-black);
}

.brands-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.brand-card {
    padding: 1.5rem;
    border-left: 4px solid var(--primary-black);
    transition: var(--transition);
}

.brand-logo {
    width: 100%;
    max-width: 120px;
    height: auto;
    margin-bottom: 1rem;
    display: block;
    object-fit: contain;
}

.brand-card:hover {
    background-color: var(--hover-bg);
    transform: translateX(5px);
}

.brand-card h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.brand-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .brands-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .brands h2 {
        font-size: 2rem;
    }

    .category {
        padding: 1.5rem;
    }
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about {
    padding: 80px 20px;
    background-color: var(--accent-white);
}

.about h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-dark);
}

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

.about-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.company-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-light);
}

.detail-item {
    padding: 1.5rem;
    background-color: var(--hover-bg);
    border-radius: 8px;
}

.detail-item h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.detail-item p {
    font-size: 1.2rem;
    color: var(--primary-black);
    font-weight: 600;
}

@media (max-width: 768px) {
    .about h2 {
        font-size: 2rem;
    }

    .company-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-content p {
        font-size: 1rem;
    }
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact {
    padding: 80px 20px;
    background-color: var(--hover-bg);
}

.contact h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info,
.contact-form {
    background-color: var(--accent-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-info h3,
.contact-form h3 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item p:first-child {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.info-item p:last-child {
    color: var(--text-light);
    line-height: 1.6;
}

.info-item a {
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.info-item a:hover {
    text-decoration: underline;
}

/* Form Styling */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-black);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.btn-submit {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-black);
    color: var(--accent-white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact h2 {
        font-size: 2rem;
    }

    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background-color: var(--primary-dark);
    color: var(--accent-white);
    padding: 3rem 20px 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-section li {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    opacity: 0.85;
}

.footer-section a {
    color: var(--accent-white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.7;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-section h4 {
        margin-bottom: 0.75rem;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--hover-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--text-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-dark);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--hover-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--text-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-dark);
}

/* Print Styles */
@media print {
    .navbar {
        display: none;
    }

    body {
        background-color: white;
    }
}
