/* NAZAL HAIR - Minimalist Black & White Design */

:root {
    --primary-black: #000000;
    --primary-white: #FFFFFF;
    --text-gray: #333333;
    --light-gray: #F5F5F5;
    --border-gray: #E0E0E0;
    --hover-gray: #F0F0F0;
}

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

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-gray);
    background-color: var(--primary-white);
    line-height: 1.6;
}

/* Navigation */
header {
    background-color: var(--primary-white);
    border-bottom: 1px solid var(--border-gray);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-black);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-tagline {
    font-size: 0.75rem;
    font-weight: normal;
    color: var(--text-gray);
    display: block;
    margin-top: 0.25rem;
}

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

nav a {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    background-color: var(--light-gray);
    padding: 5rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.hero .tagline {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-style: italic;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: var(--primary-black);
    color: var(--primary-white);
    text-decoration: none;
    border: 2px solid var(--primary-black);
    transition: all 0.3s ease;
    font-weight: 500;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--primary-white);
    color: var(--primary-black);
}

.btn-outline {
    background-color: var(--primary-white);
    color: var(--primary-black);
    border: 2px solid var(--primary-black);
}

.btn-outline:hover {
    background-color: var(--primary-black);
    color: var(--primary-white);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    color: var(--primary-black);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: -0.5px;
}

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

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-card {
    background-color: var(--primary-white);
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
    overflow: hidden;
}

.product-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: var(--light-gray);
}

.product-content {
    padding: 1.5rem;
}

.product-card h3 {
    font-size: 1.25rem;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.product-card .subtitle {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-style: italic;
}

.product-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-card a {
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--primary-black);
    transition: opacity 0.3s ease;
}

.product-card a:hover {
    opacity: 0.7;
}

/* Product Detail */
.product-detail {
    max-width: 1000px;
    margin: 0 auto;
}

.product-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.product-images img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border: 1px solid var(--border-gray);
}

.product-info h2 {
    font-size: 2rem;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.product-info .subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.product-info h3 {
    font-size: 1.25rem;
    color: var(--primary-black);
    margin: 1.5rem 0 1rem;
    font-weight: 500;
}

.product-info ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-info li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.product-info li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-black);
    font-weight: bold;
}

/* About Section */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.commitments {
    background-color: var(--light-gray);
    padding: 2rem;
    margin: 2rem 0;
}

.commitments h3 {
    font-size: 1.5rem;
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-weight: 500;
}

.commitments ol {
    padding-left: 1.5rem;
}

.commitments li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
    padding: 2rem 1rem;
    border: 1px solid var(--border-gray);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: var(--primary-black);
    color: var(--primary-white);
    border-radius: 50%;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step h4 {
    font-size: 1.1rem;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

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

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    border: 1px solid var(--border-gray);
    overflow: hidden;
}

.testimonial-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Contact Section */
.contact-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-item {
    padding: 1.5rem;
    margin-bottom: 1rem;
    background-color: var(--light-gray);
}

.contact-item h3 {
    font-size: 1.25rem;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-item a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-links a {
    padding: 1rem 2rem;
    border: 1px solid var(--primary-black);
    color: var(--primary-black);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* CTA Section */
.cta-section {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 4rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background-color: var(--primary-white);
    color: var(--primary-black);
    border: 2px solid var(--primary-white);
}

.btn-white:hover {
    background-color: transparent;
    color: var(--primary-white);
}

/* Icon spacing in buttons */
.btn i,
.social-links a i {
    margin-right: 0.5rem;
    font-size: 1.1em;
}

/* Footer */
footer {
    background-color: var(--light-gray);
    padding: 3rem 2rem 1rem;
    border-top: 1px solid var(--border-gray);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.1rem;
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer-section p,
.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.8;
    display: block;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-gray);
    color: var(--text-gray);
    font-size: 0.9rem;
}

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

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

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

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

