/* Custom Styles for Northwest Styling Salon */

/* Color Variables */
:root {
    --burgundy-50: #fdf2f4;
    --burgundy-100: #fce7eb;
    --burgundy-200: #f9d0d9;
    --burgundy-300: #f2a7b5;
    --burgundy-400: #e7728a;
    --burgundy-500: #d44d68;
    --burgundy-600: #c1364f;
    --burgundy-700: #a22a42;
    --burgundy-800: #852336;
    --burgundy-900: #6e1e2f;
    
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-200: #e7e5e4;
    --stone-300: #d6d3d1;
    --stone-400: #a8a29e;
    --stone-500: #78716c;
    --stone-600: #57534e;
    --stone-700: #44403c;
    --stone-800: #292524;
    --stone-900: #1c1917;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.font-serif {
    font-family: 'Cormorant Garamond', serif;
}

/* Custom Button Styles */
.btn-primary {
    display: inline-flex;
    align-items: center;
    background-color: var(--burgundy-800);
    color: white;
    padding: 14px 32px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--burgundy-800);
}

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

.btn-outline {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    color: var(--burgundy-800);
    padding: 14px 32px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--burgundy-800);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline:hover {
    background-color: var(--burgundy-800);
    color: white;
}

/* Navigation */
.nav-logo {
    text-decoration: none;
}

.nav-link {
    position: relative;
    color: var(--stone-600);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--burgundy-700);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--burgundy-700);
}

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

/* Hero Section */
.hero-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.hero-image-container {
    position: relative;
}

.hero-image-main {
    position: relative;
    overflow: hidden;
}

.hero-image-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.1));
    z-index: 1;
}

.hero-accent-line {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-right: 1px solid var(--burgundy-300);
    border-top: 1px solid var(--burgundy-300);
    z-index: -1;
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--burgundy-600);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        height: 0;
        top: 0;
    }
    50% {
        height: 100%;
        top: 0;
    }
    51% {
        height: 100%;
        top: 100%;
    }
    100% {
        height: 0;
        top: 100%;
    }
}

/* Services */
.service-card {
    position: relative;
    padding: 24px;
    background-color: white;
    border: 1px solid var(--stone-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--burgundy-200);
}

/* About Section */
.about-image-container {
    position: relative;
}

.about-image-main {
    position: relative;
    overflow: hidden;
}

.about-image-accent {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    border-left: 1px solid var(--burgundy-300);
    border-bottom: 1px solid var(--burgundy-300);
    z-index: -1;
}

/* Gallery */
.gallery-item {
    overflow: hidden;
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s ease;
}

.gallery-item:hover::after {
    background: rgba(0, 0, 0, 0.1);
}

/* Testimonials */
.testimonial-card {
    padding: 32px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(193, 54, 79, 0.3);
}

/* Contact */
.contact-info-item {
    padding-left: 20px;
    border-left: 1px solid var(--stone-200);
}

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

/* Mobile Menu */
.mobile-link {
    color: var(--stone-800);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: var(--burgundy-700);
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-image-accent {
        display: none;
    }
    
    .about-image-accent {
        display: none;
    }
    
    .btn-primary,
    .btn-outline {
        padding: 12px 24px;
        font-size: 10px;
    }
}
