/* ============================================================
   BARBERS MADRID — HOME.CSS PREMIUM BLACK & GOLD
   Elegante · Masculino · Profesional
============================================================ */

/* Tipografías */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Playfair+Display:wght@500;600;700&display=swap');

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

/* ============================================================
   VARIABLES GLOBAL BLACK & GOLD
============================================================ */
:root {
    --bg: #0f0f0f;
    --text: #f5f5f5;
    --text-soft: #cfcfcf;

    --gold: #c8a14f;
    --gold-dark: #b3893e;

    --card-bg: #1a1a1a;
    --card-shadow: rgba(0,0,0,0.5);

    --footer-bg: #0b0b0b;
}

/* ============================================================
   BODY
============================================================ */
body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
}

/* ============================================================
   HERO PRINCIPAL
============================================================ */
.hero {
    position: relative;
    width: 100%;
    height: 95vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(45%) saturate(120%);
}

.hero-text {
    position: relative;
    text-align: center;
    z-index: 3;
    color: var(--text);
    padding: 20px;
}

.hero-small {
    font-size: 0.9rem;
    letter-spacing: 4px;
    opacity: 0.9;
    display: block;
    margin-bottom: 12px;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.hero-text h2 {
    font-size: 1.7rem;
    margin-top: 10px;
    color: var(--gold);
    font-weight: 600;
}

.hero-text p {
    margin-top: 14px;
    font-size: 1.1rem;
    opacity: 0.85;
}

/* Botón principal */
.btn-primary {
    display: inline-block;
    margin-top: 26px;
    padding: 14px 42px;
    background: var(--gold);
    color: #000;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

/* ============================================================
   QUIÉNES SOMOS
============================================================ */
.about-wrapper {
    padding: 90px 20px 60px;
}

.about {
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
}

.section-underline {
    width: 70px;
    height: 3px;
    background: var(--gold);
    margin: 12px auto 28px;
    border-radius: 2px;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-soft);
    margin-bottom: 14px;
}

/* ============================================================
   SERVICIOS DESTACADOS
============================================================ */
.services {
    padding: 100px 20px 110px;
    text-align: center;
}

.services .section-title {
    font-size: 2.8rem;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 8px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 35px;
    max-width: 1100px;
    margin: 60px auto 0;
}

.service-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 40px 28px;
    text-align: center;
    border: 1px solid rgba(200,161,79,0.4);
    box-shadow: 0 4px 25px rgba(0,0,0,0.45);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}

.service-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: rgba(200,161,79,0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    color: var(--gold);
}

.service-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.service-card p {
    font-size: 1rem;
    color: var(--text-soft);
    margin-bottom: 16px;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

/* ============================================================
   CTA FINAL
============================================================ */
.cta-bottom {
    background: var(--gold);
    color: #000;
    text-align: center;
    padding: 80px 20px;
}

.cta-bottom h2 {
    font-size: 2.4rem;
    margin-bottom: 22px;
}

.btn-primary-big {
    padding: 18px 44px;
    background: #000;
    color: var(--gold);
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-primary-big:hover {
    background: #222;
    transform: scale(1.06);
}

/* ============================================================
   SECCIÓN VISÍTANOS
============================================================ */
.visit {
    background: #121212;
    padding: 105px 20px 80px;
    text-align: center;
}

.visit-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.9rem;
    color: var(--gold);
}

.visit-underline {
    width: 75px;
    height: 3px;
    background: var(--gold);
    margin: 12px auto 42px;
}

.visit-grid {
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    margin: auto;
}

.visit-column h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
    color: var(--gold);
}

.visit-column p {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--text-soft);
}

.visit-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 36px;
    background: var(--gold);
    color: #000;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
}

.visit-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
}

/* ============================================================
   FOOTER
============================================================ */
.bio-footer {
    background: var(--footer-bg);
    color: var(--text-soft);
    text-align: center;
    padding: 45px 20px 28px;
    font-size: 0.95rem;
}

.bio-footer-copy {
    margin-top: 12px;
    opacity: 0.75;
    font-size: 0.85rem;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 768px) {
    .hero {
        height: 80vh;
    }

    .hero-text h1 { font-size: 2.6rem; }
    .hero-text h2 { font-size: 1.3rem; }
    .hero-text p { font-size: 0.9rem; }
}
