/* Global Styles */
:root {
    --primary-color: #C5A059;
    /* Champagne Gold */
    --primary-dark: #A68042;
    --primary-light: #E1C58F;
    --secondary-color: #0A0A0A;
    /* Rich Black */
    --accent-color: #F8F1E7;
    /* Soft Nude/Cream */
    --text-color: #1A1A1A;
    --text-muted: #666666;
    --light-gray: #F9F9F9;
    --white: #ffffff;
    --border-color: #E5E5E5;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    --nav-height: 80px;
    --container-width: 1400px;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    text-transform: capitalize;
    letter-spacing: 0.5px;
    font-weight: 700;
}

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

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 40px;
    background-color: var(--secondary-color);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid var(--secondary-color);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 2px;
    font-size: 0.75rem;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary-color);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

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

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.btn-outline::before {
    background-color: var(--white);
}

.btn-outline:hover {
    color: var(--secondary-color);
}

/* Header & Navigation */
.top-bar {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    text-align: center;
    padding: 8px 0;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--nav-height);
    max-width: var(--container-width);
    padding: 0 30px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 1px;
    text-align: center;
    line-height: 1;
    text-transform: uppercase;
}

.logo span {
    display: block;
    font-size: 0.55rem;
    letter-spacing: 4px;
    color: var(--primary-color);
    margin-top: 5px;
    font-family: var(--font-body);
    font-weight: 400;
}

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

.nav-links li a {
    color: var(--secondary-color);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding: 10px 0;
    transition: var(--transition);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3)), url('../images/luxury_hair_hero.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    position: relative;
}

.hero-content h1 {
    font-size: clamp(3rem, 10vw, 5.5rem);
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-weight: 700;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    font-family: var(--font-heading);
    font-style: italic;
}

/* Section Common */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 60px;
    position: relative;
    color: var(--secondary-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
}

/* Featured Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.category-item {
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
    border: none;
    transition: var(--transition);
    background-color: var(--light-gray);
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.category-item:hover .category-img {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.2);
}

.category-item:hover .category-img img {
    transform: scale(1.1);
}

.category-name {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--secondary-color);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Product/Service Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--white);
    border: none;
    transition: var(--transition);
    position: relative;
    padding-bottom: 20px;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-img {
    height: 420px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
    background-color: var(--light-gray);
    border-radius: 4px;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.product-info {
    padding: 0;
    text-align: left;
}

.product-title {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--secondary-color);
    letter-spacing: 1px;
    font-weight: 600;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Why Choose Us - Icon Box */
.features-section {
    background-color: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 100px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-column h3 {
    color: var(--white);
    font-size: 0.8rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    display: block;
    border: none;
    padding-bottom: 0;
    font-family: var(--font-body);
}

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

.footer-links a {
    color: #ccc;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

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

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
}

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

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    color: #999;
    font-size: 0.85rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--white);
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
}

.testimonial-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.testimonial-stars {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

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

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

/* Contact Page Styles */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

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

.contact-details .section-title.text-start {
    text-align: left;
    margin-bottom: 40px;
}

.contact-details .section-title.text-start::after {
    left: 0;
    transform: none;
}

.contact-info-list {
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: var(--text-color);
}

.contact-info-item i {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-right: 20px;
    margin-top: 5px;
    width: 25px;
    text-align: center;
}

.map-container {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map-placeholder {
    width: 100%;
    height: 350px;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 1px;
}

.contact-form-container {
    background-color: var(--white);
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    border-top: 3px solid var(--primary-color);
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background-color: #fafafa;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

textarea.form-control {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    margin-top: 4px;
}

.checkbox-group label {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.4;
    display: inline-block;
}

.btn.full-width {
    width: 100%;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.header-icons a {
    color: var(--secondary-color);
    transition: var(--transition);
    position: relative;
}

.header-icons a:hover {
    color: var(--primary-color);
}

.header-icons .fa-shopping-cart::after {
    content: '0';
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: #000;
    color: var(--white);
    font-size: 0.6rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}