/* =====================================================
   LASH GLAM BY SAM - CUSTOM STYLESHEET
   Brand Colors: Rose Gold, Blush Pink, White, Charcoal
   ===================================================== */

/* CSS Variables */
:root {
    /* Brand Colors */
    --rose-gold: #B76E79;
    --rose-gold-light: #D4A5A5;
    --rose-gold-dark: #8B4A52;
    --blush: #F8E8E8;
    --blush-light: #FDF5F5;
    --champagne: #F7E7CE;
    --charcoal: #2D2D2D;
    --charcoal-light: #4A4A4A;

    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --light-gray: #F0F0F0;
    --gray: #888888;
    --text-dark: #2D2D2D;
    --text-muted: #6B6B6B;

    /* Gradients */
    --gradient-rose: linear-gradient(135deg, #B76E79 0%, #D4A5A5 100%);
    --gradient-blush: linear-gradient(135deg, #F8E8E8 0%, #FFFFFF 100%);

    /* Typography */
    --font-primary: 'Cormorant Garamond', serif;
    --font-secondary: 'Montserrat', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;

    /* Transitions */
    --transition: 0.3s ease;

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.1);
    --shadow-rose: 0 10px 40px rgba(183, 110, 121, 0.2);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
}

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

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-secondary);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

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

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

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

.btn-outline:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-3px);
}

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

.btn-white:hover {
    background: var(--blush);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-lg {
    padding: 18px 40px;
    font-size: 14px;
}

/* Top Bar */
.top-bar {
    background: var(--charcoal);
    color: var(--white);
    padding: 12px 0;
    font-size: 13px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.top-bar-left i {
    color: var(--rose-gold-light);
}

.top-bar-right a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.top-bar-right a:hover {
    color: var(--white);
}

/* Header */
.header {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-main {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1;
}

.logo-sub {
    font-family: var(--font-secondary);
    font-size: 12px;
    font-weight: 400;
    color: var(--rose-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--charcoal);
    position: relative;
    padding: 5px 0;
}

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

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

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: var(--gradient-rose);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 50px;
}

.nav-cta:hover {
    background: var(--rose-gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-rose);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1920') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.85) 0%, rgba(183, 110, 121, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-tag {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 72px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.1;
}

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

.hero p {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-rating .stars {
    display: flex;
    gap: 3px;
}

.hero-rating .stars i {
    color: #FFD700;
    font-size: 16px;
}

.hero-rating span {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

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

/* Services Preview */
.services-preview {
    padding: var(--section-padding);
    background: var(--blush-light);
}

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

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(183, 110, 121, 0.1);
    color: var(--rose-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 48px;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    background: var(--gradient-rose);
    color: var(--white);
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured .price {
    color: var(--white);
}

.service-card.featured .service-link {
    color: var(--white);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--champagne);
    color: var(--charcoal);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 40px;
    transform: rotate(45deg);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--blush);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--rose-gold);
    transition: var(--transition);
}

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

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--charcoal);
}

.service-card p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.service-card .price {
    display: block;
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 600;
    color: var(--rose-gold);
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--rose-gold);
}

.service-link:hover {
    gap: 12px;
}

/* Why Us Section */
.why-us {
    padding: var(--section-padding);
    background: var(--white);
}

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

.why-us-content .section-tag {
    margin-bottom: 15px;
}

.why-us-content h2 {
    font-size: 48px;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.why-us-content > p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.feature-item .feature-icon {
    width: 50px;
    height: 50px;
    background: var(--blush);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-gold);
    font-size: 18px;
    flex-shrink: 0;
}

.feature-item h4 {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 14px;
    color: var(--text-muted);
}

.why-us-image {
    position: relative;
}

.why-us-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--gradient-rose);
    color: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-rose);
}

.experience-badge .number {
    display: block;
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Testimonials */
.testimonials {
    padding: var(--section-padding);
    background: var(--blush-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    transition: var(--transition);
}

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

.testimonial-card .stars {
    margin-bottom: 20px;
}

.testimonial-card .stars i {
    color: #FFD700;
    font-size: 14px;
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-author .name {
    display: block;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 3px;
}

.testimonial-author .service {
    font-size: 13px;
    color: var(--rose-gold);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-rose);
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-info {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.cta-info i {
    margin-right: 8px;
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo .logo-main {
    color: var(--white);
}

.footer-logo .logo-sub {
    color: var(--rose-gold-light);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 25px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--rose-gold);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--rose-gold);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-col ul a:hover {
    color: var(--white);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px !important;
}

.contact-list i {
    color: var(--rose-gold-light);
    margin-top: 3px;
}

.contact-list span,
.contact-list a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-rose);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow-rose);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 52px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-us-image {
        order: -1;
    }

    .experience-badge {
        bottom: -20px;
        left: auto;
        right: 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .top-bar-left {
        display: none;
    }

    .top-bar-content {
        justify-content: center;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        gap: 15px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        min-height: 80vh;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 16px;
    }

    .section-header h2,
    .why-us-content h2,
    .cta-content h2 {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
