/* ==========================================================================
   THE GROOMING CO. - BARBERÍA DEMO
   ========================================================================== */

:root {
    --bg-dark: #0A0A0A;
    --bg-darker: #050505;
    --accent: #C5A059; /* Vintage Brass/Gold */
    --accent-hover: #A88647;
    
    --text-main: #EAEAEA;
    --text-muted: #888888;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.4s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: #FFF;
}

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

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; }
.mt-30 { margin-top: 30px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-large { padding: 18px 40px; font-size: 0.9rem; }

.btn-primary { background: var(--accent); color: #000; font-weight: 600; border: 1px solid var(--accent); }
.btn-primary:hover { background: transparent; color: var(--accent); }

.btn-outline { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
.btn-outline:hover { background: var(--accent); color: #000; }

/* Header */
.header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 25px 0;
    z-index: 100;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

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

.logo { font-family: var(--font-heading); font-size: 1.8rem; letter-spacing: 2px; color: var(--accent); }

.nav { display: flex; gap: 40px; }
.nav-link { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.nav-link:hover { color: #FFF; }

/* Hero */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(5,5,5,0.7) 0%, rgba(10,10,10,1) 100%);
    z-index: -1;
}

.hero-content { max-width: 800px; }
.hero-title { font-size: clamp(3.5rem, 8vw, 6rem); line-height: 1.1; margin-bottom: 20px; font-style: italic; }
.hero-desc { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 40px; }

/* Intro */
.section { padding: 100px 0; }
.bg-dark { background: var(--bg-darker); }

.intro-container { max-width: 700px; margin: 0 auto; }
.intro-icon { font-size: 2.5rem; color: var(--accent); margin-bottom: 20px; }
.section-title { font-size: 2.8rem; margin-bottom: 20px; }
.intro-text { font-size: 1.2rem; color: var(--text-muted); line-height: 1.8; }

/* Services & Prices */
.services-section { border-top: 1px solid rgba(255,255,255,0.05); }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.section-subtitle { color: var(--accent); font-style: italic; margin-bottom: 50px; font-family: var(--font-heading); font-size: 1.2rem;}

.price-list { display: flex; flex-direction: column; gap: 30px; }
.price-item { position: relative; }
.price-header { display: flex; align-items: baseline; margin-bottom: 8px; font-family: var(--font-heading); font-size: 1.5rem; }
.price-name { color: #FFF; }
.price-dots { flex-grow: 1; border-bottom: 1px dotted rgba(255,255,255,0.2); margin: 0 15px; }
.price-value { color: var(--accent); }
.price-desc { font-size: 0.95rem; color: var(--text-muted); }

/* Images Grid */
.services-images { position: relative; height: 600px; }
.img-card { position: absolute; border-radius: 4px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.img-card img { width: 100%; height: 100%; object-fit: cover; }
.card-1 { width: 70%; height: 65%; top: 0; right: 0; z-index: 2; }
.card-2 { width: 60%; height: 55%; bottom: 0; left: 0; z-index: 1; border: 5px solid var(--bg-dark); }

/* CTA Banner */
.cta-banner { padding: 120px 0; background: url('./assets/hero.png') center/cover no-relative; position: relative; }
.cta-banner::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(5,5,5,0.85); backdrop-filter: blur(5px); }
.cta-banner .container { position: relative; z-index: 1; }
.cta-title { font-size: 3.5rem; margin-bottom: 10px; }
.cta-subtitle { color: var(--accent); margin-bottom: 40px; font-size: 1.2rem; }

/* Footer */
.footer { background: var(--bg-darker); padding: 80px 0 40px; border-top: 1px solid rgba(197, 160, 89, 0.2); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; }
.footer-col p { color: var(--text-muted); margin-bottom: 10px; font-size: 0.9rem; }
.footer-col h4 { color: var(--accent); margin-bottom: 20px; font-size: 1.2rem; text-transform: uppercase; font-family: var(--font-body); font-weight: 500; letter-spacing: 1px; }
.footer-col .logo { margin-bottom: 15px; font-size: 1.5rem; }

/* Responsive */
@media (max-width: 900px) {
    .nav { display: none; }
    .btn-nav { padding: 10px 15px; font-size: 0.75rem; letter-spacing: 1px; }
    .logo { font-size: 1.2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .services-images { margin-top: 50px; height: 500px; }
    .footer-inner { grid-template-columns: 1fr; text-align: center; }
}
