/* ========================================
   BRW BAR inc. - Main Stylesheet
   Modern, Minimalist Beauty & Hair Website
   ======================================== */

/* ========================================
   CSS Reset & Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #4A4A4A;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: 0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    line-height: 1.8;
}

/* ========================================
   Layout Containers
   ======================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 100px;
}

.container-fluid {
    width: 100%;
    padding: 0;
}

/* ========================================
   Navigation Bar
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 25px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 3px solid #000000;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.logo a:hover {
    background-color: #000000;
    color: #FFFFFF;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: inherit;
    letter-spacing: 0.1em;
}

.logo-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #4A4A4A;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #000000;
    transition: width 0.3s ease;
}

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

.nav-link:hover,
.nav-link.active {
    color: #000000;
    font-weight: 600;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: #000000;
    transition: all 0.3s ease;
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    margin-top: 100px;
    min-height: calc(100vh - 100px);
    position: relative;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 100px);
}

/* Hero Image Side */
.hero-image {
    flex: 0 0 55%;
    position: relative;
    height: calc(100vh - 100px);
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Removed grayscale filter to show vibrant makeup colors */
}

/* Decorative Diagonal Lines */
.decor-lines {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: repeating-linear-gradient(
        45deg,
        #000000,
        #000000 2px,
        transparent 2px,
        transparent 12px
    );
    opacity: 0.8;
}

/* Hero Content Side */
.hero-content {
    flex: 0 0 45%;
    position: relative;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Decorative Background Blocks */
.decor-block {
    position: absolute;
    background-color: #D4E5D4;
    z-index: 0;
}

.decor-block-1 {
    top: 0;
    right: 0;
    width: 70%;
    height: 200px;
}

.decor-block-2 {
    bottom: 100px;
    left: -50px;
    width: 300px;
    height: 300px;
    background-color: #C8DFC8;
}

/* Hero Content Card */
.hero-card {
    position: relative;
    z-index: 1;
    background-color: #FFFFFF;
    padding: 60px 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 600px;
}

.hero-title {
    margin-bottom: 40px;
    line-height: 1.1;
}

.hero-title .highlight {
    font-weight: 900;
    letter-spacing: 0.03em;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #000000;
    padding: 16px 32px;
    border: 2px solid #000000;
    background-color: transparent;
    transition: all 0.3s ease;
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover {
    background-color: #000000;
    color: #FFFFFF;
}

.cta-button:hover i {
    transform: translateX(5px);
}

.cta-button-large {
    padding: 20px 40px;
    font-size: 1.125rem;
}

/* ========================================
   Services Introduction
   ======================================== */
.services-intro {
    padding: 100px 0 60px;
    text-align: center;
    background-color: #FFFFFF;
}

.section-title {
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #4A4A4A;
    font-weight: 400;
}

/* ========================================
   Services Grid
   ======================================== */
.services-grid {
    padding: 60px 0 100px;
    background-color: #FAFAFA;
}

.services-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background-color: #FFFFFF;
    padding: 50px 35px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #E8E8E8;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #D4E5D4;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: #000000;
    color: #FFFFFF;
}

.service-icon i {
    font-size: 2rem;
}

.service-title {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.service-description {
    margin-bottom: 25px;
    line-height: 1.8;
    color: #666666;
}

.service-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ========================================
   Why Choose Us Section
   ======================================== */
.why-choose-us {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.why-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-description {
    font-size: 1.125rem;
    margin: 30px 0 50px;
    line-height: 1.8;
}

.features-list {
    margin-bottom: 50px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.feature-item i {
    color: #D4E5D4;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.feature-item h4 {
    margin-bottom: 8px;
}

.feature-item p {
    color: #666666;
    font-size: 0.95rem;
}

.why-visual {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 5px;
}

.why-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.decor-block-large {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #D4E5D4;
}

/* ========================================
   Booking Section
   ======================================== */
.booking-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #B8D4B8 0%, #D4E5D4 100%);
}

.booking-card {
    text-align: center;
    padding: 80px 40px;
}

.booking-title {
    color: #000000;
    margin-bottom: 20px;
}

.booking-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: #4A4A4A;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background-color: #1A1A1A;
    color: #CCCCCC;
    padding: 80px 0 30px;
}

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

.footer-column h4 {
    color: #FFFFFF;
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer .logo {
    border: 2px solid #FFFFFF;
    padding: 10px 15px;
    display: inline-flex;
    margin-bottom: 20px;
}

.footer .logo-text,
.footer .logo-subtitle {
    color: #FFFFFF;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.6;
    font-style: italic;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #D4E5D4;
    padding-left: 5px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid #CCCCCC;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #D4E5D4;
    border-color: #D4E5D4;
    color: #000000;
}

.contact-info {
    font-size: 0.9rem;
    line-height: 2;
}

.contact-info i {
    margin-right: 8px;
    color: #D4E5D4;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333333;
    font-size: 0.875rem;
}

/* ========================================
   Responsive Design - Tablet
   ======================================== */
@media (max-width: 1199px) {
    .container {
        padding: 0 60px;
    }
    
    .hero-wrapper {
        flex-direction: column;
    }
    
    .hero-image,
    .hero-content {
        flex: 1 1 100%;
        height: auto;
    }
    
    .hero-image {
        min-height: 60vh;
    }
    
    .hero-content {
        padding: 60px 40px;
    }
    
    .why-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .why-visual {
        height: 300px;
    }
    
    .services-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* ========================================
   Responsive Design - Mobile
   ======================================== */
@media (max-width: 768px) {
    .container {
        padding: 0 30px;
    }
    
    /* Mobile Navigation */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #FFFFFF;
        flex-direction: column;
        padding: 40px 30px;
        gap: 30px;
        align-items: flex-start;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* Hero Section Mobile */
    .hero-section {
        margin-top: 80px;
    }
    
    .hero-image {
        min-height: 50vh;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
    
    .hero-card {
        padding: 40px 30px;
    }
    
    .decor-block-1 {
        width: 90%;
        height: 150px;
    }
    
    .decor-block-2 {
        width: 200px;
        height: 200px;
        left: -30px;
    }
    
    /* Services */
    .services-intro {
        padding: 60px 0 40px;
    }
    
    .services-grid {
        padding: 40px 0 60px;
    }
    
    .services-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Why Choose Us */
    .why-choose-us {
        padding: 60px 0;
    }
    
    .why-description {
        font-size: 1rem;
    }
    
    /* Booking */
    .booking-section {
        padding: 60px 0;
    }
    
    .booking-card {
        padding: 50px 20px;
    }
    
    .cta-button-large {
        width: 100%;
        justify-content: center;
        padding: 18px 30px;
    }
    
    /* Footer */
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ========================================
   Animations & Transitions
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth Scroll */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    * {
        animation: none !important;
        transition: none !important;
    }
}
