/* landing.css - Premium Design for R Nails Studio */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@400;500;600&display=swap');

:root {
    --color-primary: #FF1E80; /* More Vibrant Pink */
    --color-secondary: #FAD0C4; /* Nude logo */
    --color-dark: #3D0C11; /* Deep Burgundy */
    --color-white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-blur: 15px;
    --shadow-premium: 0 10px 40px rgba(61, 12, 17, 0.08);
}

/* Team Section Styles */
.team-section {
    padding: 80px 5%;
    background: #fdf6f6;
    text-align: center;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.stylist-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 30px;
    box-shadow: var(--shadow-premium);
    width: 200px;
    transition: transform 0.3s;
}

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

.stylist-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px;
    object-fit: cover;
    border: 3px solid var(--color-primary);
}

.stylist-card h4 {
    font-size: 1.1rem;
    color: var(--color-dark);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #fdf6f6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.landing-container {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(250, 208, 196, 0.4), rgba(255, 30, 128, 0.2)),
                url('/images/landing/hero_v2.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 20px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(8px);
    transform: scale(1.1); /* avoids white edges from blur */
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    padding: 3rem 2rem;
    border-radius: 40px;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(255, 255, 255, 0.4);
    max-width: 800px;
    transform: translateY(0);
    animation: fadeInUp 1.2s ease-out;
}

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

.hero-title {
    font-size: clamp(2rem, 10vw, 4.5rem);
    margin-bottom: 0.8rem;
    color: var(--color-dark);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 4vw, 1.4rem);
    margin-bottom: 2rem;
    color: var(--color-dark);
    opacity: 0.8;
}

.btn-main {
    display: inline-block;
    background-color: var(--color-primary);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(255, 117, 160, 0.4);
}

.btn-main:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 117, 160, 0.6);
}

/* Info Section */
.info-section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background: var(--color-primary);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

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

.service-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: all 0.4s ease;
}

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

.service-img {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
}

.service-card p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
}

/* Floating Buttons */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: all 0.3s;
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-whatsapp { background-color: #25D366; }
.float-reserve { background-color: var(--color-primary); }

.float-btn svg { width: 30px; height: 30px; }

/* Responsive */
@media (max-width: 768px) {
    .hero { 
        padding-top: 80px;
        min-height: 100vh;
    }
    .hero-content {
        padding: 2rem 1.5rem;
        width: 95%;
        border-radius: 30px;
    }
    .btn-main {
        padding: 1rem 2.5rem;
        font-size: 1rem;
        width: 100%;
    }
    .info-section {
        padding: 60px 20px;
    }
    .team-section {
        padding: 60px 20px;
    }
    .stylist-card {
        width: 160px;
        padding: 15px;
    }
    .stylist-img {
        width: 80px;
        height: 80px;
    }
    .floating-actions { bottom: 20px; right: 20px; }
    .float-btn { width: 55px; height: 55px; }
}
