:root {
    --bg: #000000;
    --pink: #ff69b4;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 105, 180, 0.4);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--bg);
    color: white;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* TOP STICKY ACTIONS */
.top-actions {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
}

.action-flex {
    display: flex;
    justify-content: space-around;
    max-width: 500px;
    margin: 0 auto;
}

.action-link {
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* BRANDING */
.hero {
    height: 45vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.logo-text {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(3.5rem, 12vw, 6.5rem);
    color: var(--pink);
    text-shadow: 0 0 30px rgba(255, 105, 180, 0.4);
}

.tagline {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-top: 10px;
    opacity: 0.6;
}

/* DYNAMIC GALLERY */
.gallery-section {
    padding: 20px 0 100px;
}

.section-header { text-align: center; margin-bottom: 20px; }
.section-header h2 { font-family: 'Dancing Script', cursive; font-size: 2.5rem; }
.divider { width: 40px; height: 2px; background: var(--pink); margin: 10px auto; }

.horizontal-scroll {
    width: 100%;
    overflow: hidden;
    touch-action: pan-y; /* Essential for mobile scrolling */
}

.scroll-track {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
}

.nail-card {
    flex: 0 0 280px; /* Mobile width */
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nail-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none; /* Prevents long-press issues on mobile */
}

@media (min-width: 1024px) {
    .nail-card {
        flex: 0 0 350px; /* Desktop width */
        height: 500px;
    }
}

/* ANIMATION KEYFRAME */
@keyframes dynamicLoop {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.pink-glow {
    position: absolute;
    width: 60vw;
    height: 60vw;
    background: var(--pink);
    filter: blur(160px);
    opacity: 0.1;
    z-index: -1;
}

footer { padding: 40px; text-align: center; opacity: 0.3; font-size: 0.7rem; }

/* Testimonials Section */
.testimonials-section {
    padding: 20px 20px;
    background: transparent;
    position: relative;
    z-index: 1;
}

.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03); /* Subtle glass effect */
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 182, 193, 0.2); /* Soft pink border */
    padding: 40px 30px;
    border-radius: 20px;
    width: 100%;
    max-width: 350px;
    transition: transform 0.3s ease;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 182, 193, 0.5);
    box-shadow: 0 10px 30px rgba(255, 182, 193, 0.1);
}

.stars {
    color: #ffb6c1; /* Matching your pink glow */
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.quote {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #eee;
    margin-bottom: 20px;
    font-weight: 300;
}

.client-name {
    font-family: 'Dancing Script', cursive; /* Using your logo font for names */
    font-size: 1.4rem;
    color: #ffb6c1;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .testimonial-card {
        max-width: 100%;
    }
}


/* About/Mission Section */
.about-mission {
    padding: 20px 20px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: #ffb6c1;
    margin-bottom: 25px;
}

.about-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 20px;
    font-weight: 300;
}

.signature {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: #ffb6c1;
    margin-top: 30px;
}

.about-visual {
    flex: 1;
    min-width: 300px;
    position: relative;
    display: flex;
    justify-content: center;
}

.about-image {
    width: 200px;
    height: 200px; /* Ensure height matches width for the circle */
    border-radius: 100px;
    filter: grayscale(20%) contrast(110%);
    object-fit: cover;
    z-index: 2;

    /* This creates the radial fade to 'nothing' (transparent) */
    /* Which looks like a fade to black since your site is black */
    -webkit-mask-image: radial-gradient(circle, black 40%, rgba(0,0,0,0) 70%);
    mask-image: radial-gradient(circle, black 40%, rgba(0,0,0,0) 70%);
}

.mission-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Mobile responsive layout */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column-reverse; /* Text first on mobile */
        text-align: center;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
}