/* ===================================
   Elysian Hair Studio - Main Styles
   =================================== */

/* CSS Variables - Brand Colors */
:root {
    --color-dark-grey: #323133;
    --color-gold: #AC9E5E;
    --color-light-grey: #AEB0B2;
    --color-bg-soft: #FAF5F0;
    --color-white: #FFFFFF;
    --color-text-dark: #323133;
    --color-text-light: #6B6B6B;
    --color-gold-hover: #8B7F4A;
    --color-overlay: rgba(50, 49, 51, 0.7);
    
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Montserrat', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    --shadow-soft: 0 2px 10px rgba(50, 49, 51, 0.08);
    --shadow-medium: 0 5px 20px rgba(50, 49, 51, 0.12);
    --shadow-large: 0 10px 40px rgba(50, 49, 51, 0.15);
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
    font-weight: 400;
}

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

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

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

.gold-accent {
    color: var(--color-gold);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    border-radius: 50px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: var(--color-gold-hover);
    border-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background-color: var(--color-dark-grey);
    color: var(--color-white);
    border-color: var(--color-dark-grey);
}

.btn-secondary:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
    border-color: var(--color-gold);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-dark-grey);
    border-color: var(--color-dark-grey);
}

.btn-outline:hover {
    background-color: var(--color-dark-grey);
    color: var(--color-white);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1rem;
}

/* Navigation Header */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--color-white);
    box-shadow: var(--shadow-soft);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.navbar {
    padding: 1rem 0;
}

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

.logo-img {
    height: 70px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: var(--transition-smooth);
}

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

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

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

.nav-link.btn-book {
    background-color: var(--color-gold);
    color: var(--color-white);
    padding: 10px 24px;
    border-radius: 50px;
    margin-left: 1rem;
}

.nav-link.btn-book::after {
    display: none;
}

.nav-link.btn-book:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--color-dark-grey);
    margin: 3px 0;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    min-height: 500px;
    max-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 70px;
    background-image: url('../images/hero/moons-and-crystals.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero/moons-and-crystals.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 0 20px;
    position: relative;
}

.hero-logo {
    max-width: 250px;
    height: auto;
    margin: 0 auto 2rem auto;
    display: block;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--color-dark-grey);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 300;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-text {
    font-size: 0.85rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid var(--color-gold);
    border-radius: 25px;
    position: relative;
    margin: 0 auto;
}

.scroll-icon::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--color-gold);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDown 2s infinite;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--color-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--color-dark-grey);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--color-white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(174, 176, 178, 0.2);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
    border-color: var(--color-gold);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--color-gold);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-dark-grey);
}

.service-description {
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: var(--color-gold);
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-block;
    transition: var(--transition-smooth);
}

.service-link:hover {
    color: var(--color-gold-hover);
    transform: translateX(5px);
}

/* About Preview Section */
.about-preview {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-dark-grey) 0%, #1a1a1a 100%) !important;
    position: relative;
    overflow: hidden;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(172, 158, 94, 0.03) 35px, rgba(172, 158, 94, 0.03) 70px);
    pointer-events: none;
    animation: slidePattern 20s linear infinite;
}

@keyframes slidePattern {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(70px, 70px);
    }
}

.about-preview::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(172, 158, 94, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(172, 158, 94, 0.08) 0%, transparent 50%);
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 30px;
    color: var(--color-white);
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-dark-grey) 100%);
    border-radius: 10px;
    overflow: hidden;
}

.image-frame {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    z-index: -1;
}

/* About Preview specific styles */
.about-preview .btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.about-preview .btn-outline:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
    border-color: var(--color-gold);
}

.about-preview .gold-accent {
    color: var(--color-gold);
}

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

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-wrapper {
    overflow: hidden;
    position: relative;
}

.testimonial-slide {
    padding: 40px;
    text-align: center;
    display: none;
}

.testimonial-slide.active {
    display: block;
}

.stars {
    color: var(--color-gold);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-text-dark);
    margin-bottom: 30px;
    line-height: 1.8;
}

.testimonial-author h4 {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: var(--color-dark-grey);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--color-gold);
    background-color: transparent;
    color: var(--color-gold);
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.nav-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
}

/* Instagram Feed Section */
.instagram-feed {
    padding: 100px 0;
    background-color: var(--color-bg-soft);
}

/* Gallery Preview specific styling */
.gallery-preview-section {
    background: var(--color-white);
    position: relative;
}

.gallery-preview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.gallery-preview-section .section-title {
    color: var(--color-dark-grey);
}

.gallery-preview-section .section-subtitle {
    color: var(--color-text-light);
}

/* Gallery title desktop line break */
@media (min-width: 768px) {
    .gallery-title .gold-accent {
        display: block;
    }
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.instagram-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background-color: var(--color-white);
    border-radius: 10px;
}

.view-gallery {
    font-size: 1.1rem;
    color: var(--color-gold);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.view-gallery:hover {
    color: var(--color-gold-hover);
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--color-dark-grey) 0%, #1a1a1a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, transparent 0%, rgba(172, 158, 94, 0.05) 50%, transparent 100%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-title {
    color: var(--color-white);
    margin-bottom: 20px;
}

.cta-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-section .btn-large {
    background-color: var(--color-gold);
    color: var(--color-white);
    border-color: var(--color-gold);
}

.cta-section .btn-large:hover {
    background-color: var(--color-white);
    color: var(--color-dark-grey);
    border-color: var(--color-white);
}

/* Footer */
/* Form Message Styles */
.form-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.main-footer {
    background-color: var(--color-dark-grey);
    color: var(--color-white);
    padding: 60px 0 20px;
}

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

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
}

.footer-title {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--color-gold);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-gold);
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-content .hours-list li span {
    color: rgba(255, 255, 255, 0.7);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-smooth);
}

.contact-info a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Floating Book Button */
.floating-book-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--color-gold);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-large);
    transition: var(--transition-smooth);
    z-index: 999;
}

.floating-book-btn:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(172, 158, 94, 0.4);
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scrollDown {
    0% {
        opacity: 0;
        top: 10px;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

/* Page Hero (for interior pages) */
.page-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-dark-grey) 0%, #1a1a1a 100%);
    margin-top: 70px;
    overflow: hidden;
}

.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.page-hero .hero-content {
    text-align: center;
    z-index: 1;
}

.page-title {
    color: var(--color-white);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.page-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
}

/* Our Story Section */
.our-story {
    padding: 100px 0;
    background-color: var(--color-white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image-wrapper {
    position: relative;
    display: inline-block;
}

.story-image-wrapper img {
    display: block;
}

.story-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 25px;
}

.story-images {
    position: relative;
}

.image-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: 500px;
}

.collage-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.collage-item.item-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.collage-item.item-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    margin-top: 50px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 250px;
}

/* Values Section */
.our-values {
    padding: 100px 0;
    background-color: var(--color-bg-soft);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--color-white);
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--color-gold);
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-title {
    font-size: 1.3rem;
    color: var(--color-dark-grey);
    margin-bottom: 15px;
}

.value-description {
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Team Section */
.our-team {
    padding: 100px 0;
    background-color: var(--color-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-single {
    max-width: 1000px;
    margin: 60px auto 0;
}

.amanda-profile {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.profile-image {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 10px;
    margin-top: 45px;
    overflow: hidden;
}

.profile-image .image-placeholder {
    width: 100%;
    height: 100%;
    transition: var(--transition-smooth);
}

.profile-content {
    padding-top: 0;
}

.profile-content .member-name {
    font-size: 2.5rem;
    color: var(--color-dark-grey);
    margin-bottom: 10px;
    margin-top: 0;
}

.profile-content .member-role {
    color: var(--color-gold);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 30px;
}

.profile-content .member-bio p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.team-member {
    text-align: center;
    transition: var(--transition-smooth);
}

.member-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

.member-image .image-placeholder {
    width: 100%;
    height: 100%;
    transition: var(--transition-smooth);
}

.team-member:hover .image-placeholder {
    transform: scale(1.05);
}

.member-social {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.team-member:hover .member-social {
    opacity: 1;
}

.member-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark-grey);
    transition: var(--transition-smooth);
}

.member-social a:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
}

.member-name {
    font-size: 1.5rem;
    color: var(--color-dark-grey);
    margin-bottom: 5px;
}

.member-role {
    color: var(--color-gold);
    font-weight: 500;
    margin-bottom: 15px;
}

.member-bio {
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Salon Features */
.salon-features {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-dark-grey) 0%, #1a1a1a 100%) !important;
    position: relative;
    overflow: hidden;
}


.salon-features .section-header {
    position: relative;
    z-index: 1;
}

.salon-features .section-title {
    color: var(--color-white);
}

.salon-features .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-color: transparent !important;
    background-image: none !important;
    border: 2px solid var(--color-gold);
    border-radius: 10px;
    transition: none !important;
    transform: scale(1);
}

.feature-item:hover {
    transform: translateY(-3px) scale(1.03) !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3) !important;
    transition: none !important;
}

.feature-item svg {
    width: 40px;
    height: 40px;
    color: var(--color-gold) !important;
    margin-bottom: 15px;
}

.feature-item span {
    color: var(--color-white) !important;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--color-light-grey);
    border-radius: 5px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(172, 158, 94, 0.1);
}

.contact-form input.error,
.contact-form textarea.error {
    border-color: #e74c3c;
}

.contact-form button {
    align-self: flex-start;
}

.contact-info-card,
.hours-card {
    background-color: var(--color-bg-soft);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.contact-info-card h3,
.hours-card h3 {
    font-size: 1.5rem;
    color: var(--color-dark-grey);
    margin-bottom: 25px;
}

.hours-card .hours-list li,
.hours-card .hours-list li span {
    color: var(--color-text-light);
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-item svg {
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.info-item p {
    margin: 0;
    color: var(--color-text-light);
}

.info-item a {
    color: var(--color-text-light);
    transition: var(--transition-smooth);
}

.info-item a:hover {
    color: var(--color-gold);
}

/* Map Section */
.map-wrapper {
    margin-top: 60px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-large);
}

.map-container iframe {
    display: block;
    filter: grayscale(20%);
    transition: var(--transition-smooth);
}

.map-container:hover iframe {
    filter: grayscale(0%);
}