/* BarberLash Luxury Web Styles Final 21.0 - Visual Services & Direct Media Fix */
:root {
    --bg-black: #0D060D;
    --card-dark: #1B0F1B;
    --neon-pink: #F72585;
    --gold: #D4AF37;
    --soft-pink: #F9A8D4;
    --text-white: #FFFFFF;
}

html, body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, .brand {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-weight: 900;
}

/* NAVIGATION */
nav {
    background: rgba(13, 6, 13, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1rem 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10000;
}
.brand { font-size: 2rem; letter-spacing: 5px; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { color: white; text-decoration: none; font-size: 0.8rem; text-transform: uppercase; font-weight: 800; cursor: pointer; }

.nav-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; }
.nav-toggle span { width: 28px; height: 3px; background: var(--gold); border-radius: 2px; }

/* SPA SECTIONS */
section { display: none; padding: 60px 8%; min-height: 85vh; box-sizing: border-box; animation: fadeInWin 0.4s ease; }
section.active { display: block; }
@keyframes fadeInWin { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* SERVICE CARDS (Visual Grid) */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.service-card {
    background: var(--card-dark);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid #222;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}
.service-card:hover { transform: translateY(-12px); border-color: var(--neon-pink); box-shadow: 0 15px 40px rgba(247, 37, 133, 0.2); }
.service-img { width: 100%; height: 240px; background-size: cover; background-position: center; border-bottom: 2px solid var(--gold); }
.service-info { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.service-info h4 { font-size: 1.4rem; margin: 0 0 15px; color: var(--gold); line-height: 1.2; }
.service-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.service-meta .price { color: var(--neon-pink); font-weight: 900; font-size: 1.3rem; }
.service-meta .duration { color: #666; font-size: 0.8rem; border: 1px solid #333; padding: 3px 10px; border-radius: 6px; text-transform: uppercase; }
.service-info p { color: #aaa; font-size: 0.95rem; line-height: 1.5; margin: 0; }

/* PORTFOLIO & MEDIA */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 30px; justify-items: center; }
.portfolio-item-wrapper { width: 100%; max-width: 360px; border-radius: 35px; overflow: hidden; border: 2px solid #222; background: #000; position: relative; transition: 0.4s; }
.portfolio-item-wrapper:hover { transform: scale(1.02); border-color: var(--neon-pink); }

.portfolio-title-tag { position: absolute; bottom: 15px; left: 15px; background: var(--neon-pink); padding: 8px 20px; border-radius: 50px; font-weight: 900; color: white; font-size: 0.8rem; z-index: 10; pointer-events: none; box-shadow: 0 5px 15px rgba(0,0,0,0.3); }

.video-clipping-mask { height: 450px; overflow: hidden; position: relative; background: #000; border-radius: 25px; }
.video-card { width: 100%; margin-top: -65px; }
.video-card iframe { width: 100% !important; min-height: 600px !important; border: none !important; }

/* HERO */
.hero-container { display: flex; align-items: center; justify-content: space-between; gap: 50px; flex-wrap: wrap; padding-top: 40px; }
.hero-title { font-size: 4.5rem; margin: 0; line-height: 1; }
.hero-subtitle { color: var(--neon-pink); font-size: 1.1rem; letter-spacing: 7px; margin: 25px 0; font-weight: 800; text-transform: uppercase; }
.hero-robust-desc { color: #ccc; font-size: 1.1rem; margin-bottom: 40px; line-height: 1.8; max-width: 700px; }

.floating-img { width: 100%; max-width: 420px; border-radius: 55px; border: 6px solid var(--gold); box-shadow: 0 0 50px rgba(212, 175, 55, 0.4); animation: floatImg 6s ease-in-out infinite; }
@keyframes floatImg { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-25px); } }

/* BUTTONS */
.cta-btn { background: var(--neon-pink) !important; color: white !important; padding: 18px 45px; border-radius: 12px; font-weight: 900; text-decoration: none; display: inline-block; transition: 0.3s; box-shadow: 0 10px 20px rgba(247, 37, 133, 0.3); text-transform: uppercase; font-size: 0.9rem; border: none; cursor: pointer; text-align: center; }
.cta-btn:hover { background: white !important; color: black !important; transform: translateY(-8px); }
.btn-alt { background: transparent !important; border: 2px solid var(--gold) !important; color: var(--gold) !important; box-shadow: none !important; }
.btn-alt:hover { background: var(--gold) !important; color: black !important; }

/* AGENDA FORM */
.booking-form { max-width: 700px; margin: 0 auto; background: var(--card-dark); padding: 50px; border-radius: 40px; border: 1px solid #333; box-shadow: 0 30px 60px rgba(0,0,0,0.6); }
.important-box { background: rgba(247, 37, 133, 0.1); border: 1px solid var(--neon-pink); border-radius: 15px; padding: 20px; margin-bottom: 30px; text-align: center; }
.important-box p { color: var(--neon-pink); font-weight: bold; margin: 0; font-size: 0.95rem; }

label { color: var(--soft-pink); font-size: 0.85rem; font-weight: 800; display: block; margin-bottom: 10px; text-transform: uppercase; }
input, select { width: 100%; padding: 18px; background: #000; border: 1px solid #333; color: white; border-radius: 12px; font-size: 1.1rem; box-sizing: border-box; transition: 0.3s; }
input:focus, select:focus { border-color: var(--neon-pink); box-shadow: 0 0 20px rgba(247, 37, 133, 0.15); }

/* MOBILE */
@media (max-width: 768px) {
    nav { padding: 1rem 6%; }
    .nav-toggle { display: flex; }
    .nav-links { position: fixed; top: 0; right: 0; width: 100%; height: 100vh; background: var(--bg-black); flex-direction: column; justify-content: center; align-items: center; z-index: 10001; display: none; opacity: 0; pointer-events: none; }
    .nav-links.active { display: flex; opacity: 1; pointer-events: auto; animation: slideInNav 0.3s ease-out forwards; }
    @keyframes slideInNav { from { transform: translateX(100%); } to { transform: translateX(0); } }
    .nav-links a { font-size: 1.5rem; padding: 25px; color: var(--gold); }

    .hero-title { font-size: 2.8rem; text-align: center; }
    .hero-container { text-align: center; justify-content: center; padding-top: 20px; }
    .hero-content { min-width: 100%; }
    section { padding: 40px 6%; }

    .service-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .service-img { height: 200px; }
}
