/* =======================================
   Variables & General Reset
======================================= */
:root {
    --bg-black: #080808;
    --card-dark: #121011;
    --rose-gold: #b76e79;
    --rose-gold-light: #e0bfb8;
    --soft-pink: #ffb6c1;
    --text-main: #fcfcfc;
    --text-muted: #a9a2a4;
    
    --font-heading: 'Playfair Display', serif;
    --font-subheading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

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

body {
    background-color: var(--bg-black);
    color: var(--text-main);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.25;
}

.subheading {
    font-family: var(--font-subheading);
    font-weight: 400;
    letter-spacing: 0.5px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.section {
    padding: 110px 0;
    position: relative;
    z-index: 10;
}

.bg-dark {
    background-color: var(--card-dark);
    border-top: 1px solid rgba(183,110,121,0.05);
    border-bottom: 1px solid rgba(183,110,121,0.05);
}

/* =======================================
   Typography & Utilities
======================================= */
.rose-gold-text {
    color: var(--rose-gold);
}

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

.italic {
    font-style: italic;
    font-weight: 400;
}

h2 {
    font-size: 3.2rem;
    margin-bottom: 12px;
}

.subtitle-text {
    font-family: var(--font-subheading);
    font-size: 0.95rem;
    color: var(--rose-gold-light);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.lead {
    font-size: 1.15rem;
    color: var(--rose-gold-light);
    margin-bottom: 25px;
}

p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.separator {
    width: 50px;
    height: 1px;
    background: var(--rose-gold);
    margin: 0 auto 30px auto;
}

.separator.left {
    margin: 0 0 30px 0;
}

/* Ambient Glow Backgrounds */
.glow-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.25;
}

.soft-pink-orb {
    background: var(--soft-pink);
}

.rose-gold-orb {
    background: var(--rose-gold);
}

.left-orb {
    top: 50%; left: -10%;
    transform: translateY(-50%);
}

.right-orb {
    top: 40%; right: -15%;
}

/* =======================================
   Buttons
======================================= */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-family: var(--font-subheading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    border-radius: 30px; /* soft rounded elegant buttons */
}

.btn-rose-gold {
    background-color: var(--rose-gold);
    color: #fff;
    border: 1px solid var(--rose-gold);
    box-shadow: 0 4px 15px rgba(183, 110, 121, 0.2);
}

.btn-rose-gold:hover {
    background-color: transparent;
    color: var(--rose-gold);
    box-shadow: 0 0 25px rgba(183, 110, 121, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
    border-color: var(--rose-gold);
    color: var(--rose-gold);
}

.btn-gradient {
    background: linear-gradient(135deg, var(--rose-gold) 0%, #d4959f 100%);
    color: #fff;
    border: none;
}

.btn-gradient:hover {
    box-shadow: 0 0 25px rgba(183, 110, 121, 0.5);
    background: linear-gradient(135deg, #d4959f 0%, var(--rose-gold) 100%);
}

.btn.small {
    padding: 10px 25px;
    font-size: 0.75rem;
}

.full-width {
    width: 100%;
}

.mt-3 {
    margin-top: 30px;
}

/* =======================================
   Navbar
======================================= */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 25px 0;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.glass-nav.scrolled {
    background: rgba(8, 8, 8, 0.85);
    padding: 15px 0;
    border-bottom: 1px solid rgba(183,110,121,0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

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

.logo a {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #fff;
}

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

.nav-links li a {
    font-family: var(--font-subheading);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 300;
    color: var(--text-main);
    transition: var(--transition);
    position: relative;
    padding-bottom: 5px;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 1px;
    background: var(--rose-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    box-shadow: 0 0 8px var(--rose-gold);
}

.nav-links li a:hover {
    color: var(--rose-gold-light);
}

.nav-links li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--rose-gold);
}

/* =======================================
   Hero Section
======================================= */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.canvas-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#hero-canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1);
}

.video-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(8,8,8,0.3) 0%, rgba(8,8,8,0.8) 100%);
    opacity: 0.9;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 0 20px;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-family: var(--font-subheading);
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 45px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.5px;
    color: var(--rose-gold-light);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.scroll-down span {
    font-family: var(--font-subheading);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.scroll-line::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--rose-gold);
    animation: scrollSlide 2s linear infinite;
}

@keyframes scrollSlide {
    0% { top: -40px; }
    100% { top: 40px; }
}

/* =======================================
   Services Section
======================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 2;
}

.service-card {
    background-color: rgba(18, 16, 17, 0.4);
    border: 1px solid rgba(183,110,121,0.08);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 50px 35px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4), 0 0 15px rgba(183,110,121,0.1) inset;
    border-color: rgba(183,110,121,0.3);
}

.icon-wrap {
    width: 65px;
    height: 65px;
    margin: 0 auto 25px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--rose-gold);
    transition: var(--transition);
}

.service-card:hover .icon-wrap {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(183,110,121,0.6);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--rose-gold-light);
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin: 0;
}

/* =======================================
   About / Split Design Section
======================================= */
.about-flex {
    display: flex;
    align-items: center;
    gap: 70px;
}

.about-image {
    flex: 1;
    position: relative;
}

.image-frame {
    position: relative;
    padding: 15px;
}

.image-frame img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    z-index: 2;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.glow-box {
    position: absolute;
    top: 0; right: 0;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(183,110,121,0.2) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
}

.about-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

/* =======================================
   Stylists Section
======================================= */
.stylist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.stylist-card {
    text-align: center;
    transition: var(--transition);
}

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

.stylist-image {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 25px;
    position: relative;
}

.stylist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: var(--transition);
}

.stylist-card:hover .stylist-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.stylist-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #fff;
}

.specialty {
    font-family: var(--font-subheading);
    font-size: 0.8rem;
    color: var(--rose-gold);
    display: block;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.experience {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* =======================================
   Gallery Section
======================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 400px;
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
    filter: brightness(0.9);
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(183,110,121,0.2) 0%, rgba(8,8,8,0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    transform: scale(0.9);
    transition: var(--transition);
}

.gallery-item:hover .overlay-content {
    transform: scale(1);
}

.text-rose-gold {
    color: var(--rose-gold);
    font-size: 1.8rem;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(183,110,121,0.5));
}

.overlay-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
}

/* =======================================
   Testimonials Slider
======================================= */
.overflow-hidden {
    overflow: hidden;
}

.testimonial-slider {
    position: relative;
    width: 100%;
    padding: 30px 0;
}

.testimonial-track {
    display: flex;
    width: max-content;
    animation: slideContinuous 40s linear infinite;
    gap: 50px;
    padding: 0 20px;
}

.testimonial-card {
    background-color: var(--card-dark);
    border: 1px solid rgba(183,110,121,0.05);
    border-radius: 16px;
    padding: 45px;
    width: 500px;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: #ffb6c1;
    margin-bottom: 20px;
    font-size: 1rem;
    letter-spacing: 4px;
}

.quote {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 30px;
}

.client {
    display: flex;
    align-items: center;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.03);
    padding-top: 20px;
}

.avatar img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--rose-gold);
}

.info h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 3px;
}

.info span {
    font-family: var(--font-subheading);
    font-size: 0.75rem;
    color: var(--rose-gold-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes slideContinuous {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-1 * (500px * 3 + 50px * 3))); }
}

/* =======================================
   Booking Section
======================================= */
.booking-wrap {
    display: flex;
    background-color: var(--card-dark);
    border: 1px solid rgba(183,110,121,0.08);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.booking-image {
    flex: 1;
    position: relative;
    display: none;
    min-height: 400px;
}

@media(min-width: 900px) {
    .booking-image {
        display: block;
    }
}

.booking-image img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.glow-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(18,16,17,0.85) 0%, rgba(18,16,17,0.2) 100%);
}

.booking-form-wrap {
    flex: 1.3;
    padding: 70px 60px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.form-group {
    position: relative;
    width: 100%;
}

.form-row {
    display: flex;
    gap: 30px;
}

.form-group.half {
    width: 50%;
}

.input-box input,
.form-group select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding: 12px 0;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.input-box input:focus,
.form-group select:focus {
    outline: none;
    border-bottom-color: var(--rose-gold);
}

.input-box label {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-family: var(--font-subheading);
    font-size: 0.85rem;
    letter-spacing: 1px;
    pointer-events: none;
    transition: var(--transition);
}

.input-box input:focus ~ label,
.input-box input:not(:placeholder-shown) ~ label {
    top: -12px;
    font-size: 0.7rem;
    color: var(--rose-gold);
}

.date-label {
    top: -12px !important;
    font-size: 0.7rem !important;
    color: var(--text-muted) !important;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-black);
    color: var(--text-main);
}

.select-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--rose-gold);
    pointer-events: none;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1) sepia(100%) saturate(10000%) hue-rotate(300deg) brightness(1.1);
    opacity: 0.5;
    cursor: pointer;
}
input[type="date"]:focus::-webkit-calendar-picker-indicator,
input[type="time"]:focus::-webkit-calendar-picker-indicator {
    opacity: 1;
}

/* =======================================
   Footer
======================================= */
.footer {
    background-color: #050404;
    border-top: 1px solid rgba(183,110,121,0.1);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1.5fr 1.5fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.brand-text {
    margin-bottom: 25px;
    font-size: 0.9rem;
    max-width: 300px;
}

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

.social-links a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-gold-light);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--rose-gold);
    color: #fff;
    border-color: var(--rose-gold);
    box-shadow: 0 0 10px rgba(183,110,121,0.4);
}

.footer-title {
    font-family: var(--font-subheading);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 25px;
    letter-spacing: 1.5px;
    color: #fff;
}

.footer-contact ul li,
.footer-hours ul li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-contact ul li i {
    color: var(--rose-gold);
    margin-right: 15px;
    width: 15px;
    text-align: center;
}

.footer-hours ul li {
    display: flex;
    justify-content: space-between;
}

.map-placeholder {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 6px;
    overflow: hidden;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.03);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

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

/* =======================================
   Responsive
======================================= */
@media(max-width: 1024px) {
    .hero-title { font-size: 4rem; }
    .about-flex { flex-direction: column; gap: 40px; text-align: center; }
    .separator { margin-left: auto; margin-right: auto; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 350px; }
    .stylist-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media(max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: block; }
    .hero-title { font-size: 3rem; }
    .hero-buttons { flex-direction: column; width: 100%; padding: 0 20px; }
    .stylist-grid { grid-template-columns: 1fr; }
    .testimonial-card { width: 350px; padding: 30px; }
    .form-row { flex-direction: column; gap: 30px; }
    .form-group.half { width: 100%; }
    .booking-form-wrap { padding: 40px 20px; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.reveal-up {
    animation: revealUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes revealUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}
