/* ============================================
   LASH LOVE SA - STYLESHEET
   Modern, Elegant Esthetician Website
   ============================================ */

/* ============================================
   CSS VARIABLES / ROOT
   ============================================ */
:root {
    --primary-rose: #C4A484;
    --primary-blush: #E8D5D5;
    --accent-gold: #D4A574;
    --accent-champagne: #F5E6D3;
    --deep-mauve: #8B7B7B;
    --cream: #FDF8F5;
    --soft-white: #FEFCFA;
    --text-dark: #3D3535;
    --text-medium: #6B5B5B;
    --text-light: #9B8B8B;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: var(--text-dark);
    background-color: var(--soft-white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.display-heading {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-style: italic;
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-rose);
    border-radius: 4px;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--soft-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--text-dark);
    animation: pulse 1.5s ease-in-out infinite;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    background: rgba(253, 248, 245, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(196, 164, 132, 0.1);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(139, 123, 123, 0.08);
}

.navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-dark) !important;
    letter-spacing: 0.1em;
}

.navbar-brand span {
    color: var(--accent-gold);
    font-style: italic;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-medium) !important;
    padding: 0.5rem 1.2rem !important;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--text-dark) !important;
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn-book {
    background: linear-gradient(135deg, var(--primary-rose), var(--accent-gold));
    border: none;
    padding: 0.7rem 1.8rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: white;
    border-radius: 0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-book::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-rose));
    transition: left 0.4s ease;
}

.btn-book span {
    position: relative;
    z-index: 1;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(196, 164, 132, 0.3);
    color: white;
}

.btn-book:hover::before {
    left: 0;
}

.btn-book-white {
    background: white;
    color: var(--text-dark);
    border: none;
    padding: 1rem 3rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.4s ease;
    position: relative;
}

.btn-book-white:hover {
    background: var(--text-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.btn-outline-custom {
    border-radius: 0;
    padding: 0.7rem 1.8rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--cream) 0%, var(--primary-blush) 50%, var(--accent-champagne) 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4a574' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero h1 .highlight {
    color: var(--accent-gold);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 500px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-cta {
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-image-container {
    position: relative;
    animation: fadeInRight 1.2s ease 0.5s both;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 200px 200px 20px 20px;
    object-fit: cover;
    box-shadow: 0 30px 60px rgba(139, 123, 123, 0.2);
}

.hero-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    top: -30px;
    right: -30px;
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

.hero-dots {
    position: absolute;
    bottom: 50px;
    left: -50px;
    display: grid;
    grid-template-columns: repeat(5, 10px);
    gap: 10px;
}

.hero-dots span {
    width: 10px;
    height: 10px;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0.3;
}

/* ============================================
   FLOATING ELEMENTS
   ============================================ */
.floating-element {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-padding {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    display: block;
}

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

.section-divider {
    width: 60px;
    height: 1px;
    background: var(--accent-gold);
    margin: 1.5rem auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--soft-white);
    position: relative;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 0 100px 0 100px;
}

.about-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--accent-gold);
    border-radius: 0 100px 0 100px;
    z-index: -1;
}

.about-content {
    padding-left: 3rem;
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.signature {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-style: italic;
    color: var(--accent-gold);
    margin-top: 2rem;
}

.credentials {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--primary-blush);
}

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

.credential-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--accent-gold);
    display: block;
}

.credential-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    background: linear-gradient(180deg, var(--cream) 0%, var(--soft-white) 100%);
}

.service-card {
    background: white;
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    height: 100%;
    box-shadow: 0 10px 40px rgba(139, 123, 123, 0.08);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(139, 123, 123, 0.15);
}

.service-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(61, 53, 53, 0.6) 0%, transparent 60%);
}

.service-body {
    padding: 2rem;
    text-align: center;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.service-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-medium);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    background: var(--text-dark);
    padding: 6rem 0;
}

.gallery-section .section-eyebrow,
.gallery-section .section-title {
    color: white;
}

.gallery-section .section-title {
    color: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: grayscale(30%);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(196, 164, 132, 0.3) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

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

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    background: var(--soft-white);
    position: relative;
}

.testimonials-section::before {
    content: '"';
    position: absolute;
    top: 100px;
    left: 10%;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20rem;
    color: var(--primary-blush);
    line-height: 1;
    opacity: 0.5;
}

.testimonial-card {
    background: white;
    padding: 3rem;
    text-align: center;
    border-radius: 0;
    box-shadow: 0 15px 50px rgba(139, 123, 123, 0.1);
    position: relative;
    height: 100%;
}

.testimonial-stars {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-author {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-gold);
}

/* ============================================
   BOOKING CTA SECTION
   ============================================ */
.booking-cta {
    background: linear-gradient(135deg, var(--primary-rose) 0%, var(--accent-gold) 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.booking-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.booking-cta h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    position: relative;
}

.booking-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: relative;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: var(--cream);
}

.contact-info-card {
    background: white;
    padding: 3rem;
    height: 100%;
    box-shadow: 0 10px 40px rgba(139, 123, 123, 0.08);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-blush);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--accent-gold);
}

.contact-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--text-dark);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border: 1px solid var(--primary-blush);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-medium);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: white;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--text-dark);
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.footer-brand span {
    color: var(--accent-gold);
    font-style: italic;
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

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

.footer-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 991px) {
    .about-content {
        padding-left: 0;
        padding-top: 3rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 5rem 0;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-image-container {
        margin-top: 3rem;
    }

    .credentials {
        flex-wrap: wrap;
    }

    .credential-item {
        flex: 0 0 50%;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-section::before {
        font-size: 10rem;
        top: 50px;
        left: 5%;
    }

    .booking-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-badge {
        font-size: 0.55rem;
        padding: 0.4rem 1rem;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .about-image {
        height: 400px;
    }

    .service-image {
        height: 220px;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .contact-info-card {
        padding: 2rem;
    }
}
