/*
================================
  INKUT BARBER — styles.css
================================
*/

:root {
    --bg: #111111;
    --bg2: #181818;
    --bg3: #1f1f1f;
    --gold: #c9960c;
    --gold-light: #e8b020;
    --text: #f0f0f0;
    --text-muted: #777777;
    --border: #2a2a2a;
    --border-soft: #222222;
}

/* ================================
   RESET & BASE
================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--gold);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* ================================
   UTILIDADES
================================ */
.section-label {
    text-align: center;
    margin-bottom: 32px;
}

.section-label span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 0.78em;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid #2d2200;
    background: #1a1300;
    padding: 7px 22px;
    display: inline-block;
}

.divider {
    display: flex;
    align-items: center;
    margin: 0 24px;
    height: 1px;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.divider-diamond {
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
    margin: 0 14px;
}

/* ================================
   HEADER
================================ */
.header {
    background: #000;
    border-bottom: 3px solid var(--gold);
    position: relative;
    overflow: hidden;
}

/* Trama cuadrícula industrial */
.header::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 28px, #fff 28px, #fff 29px),
        repeating-linear-gradient(90deg, transparent, transparent 28px, #fff 28px, #fff 29px);
    pointer-events: none;
}

.header-inner {
    position: relative;
    z-index: 1;
    padding: 28px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.logo-image {
    max-width: 220px;
    height: auto;
}

/* Redes sociales en el header */
.header-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.header-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 1.1em;
    transition: all 0.2s;
    background: var(--bg2);
}

.header-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: #1a1300;
}

/* ================================
   HERO
================================ */
.hero {
    padding: 64px 5% 48px;
    text-align: center;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

/* Línea decorativa vertical */
.hero::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.75em;
    letter-spacing: 6px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2.2em, 7vw, 3.8em);
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 20px;
}

.hero-tagline {
    font-size: 0.78em;
    letter-spacing: 4px;
    color: var(--text-muted);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.hero-tagline::before,
.hero-tagline::after {
    content: '';
    flex: 1;
    max-width: 48px;
    height: 1px;
    background: var(--border);
}

/* ================================
   PRECIOS
================================ */
.services-section {
    padding: 40px 5%;
    max-width: 680px;
    margin: 0 auto;
}

.price-list {
    list-style: none;
}

.price-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    gap: 8px;
    transition: background 0.15s;
}

.price-item:last-child {
    border-bottom: none;
}

.service-name {
    font-size: 0.88em;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 700;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.price-dots {
    flex: 1;
    border-bottom: 1px dotted var(--border);
    min-width: 20px;
}

.service-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.1em;
    color: var(--gold);
    white-space: nowrap;
    flex-shrink: 0;
}

.badge-popular {
    background: var(--gold);
    color: #000;
    font-size: 0.62em;
    font-weight: 900;
    letter-spacing: 1px;
    padding: 3px 8px;
    text-transform: uppercase;
    flex-shrink: 0;
}

/* ================================
   CTA — BOTÓN RESERVA
================================ */
.cta-section {
    padding: 8px 5% 56px;
    text-align: center;
}

.appointment-button {
    display: inline-block;
    background: var(--gold);
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 0.9em;
    padding: 18px 52px;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    border: none;
    position: relative;
    transition: all 0.2s;
}

/* Marco interior decorativo */
.appointment-button::before {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    pointer-events: none;
    transition: all 0.2s;
}

.appointment-button:hover {
    background: transparent;
    color: var(--gold);
    outline: 2px solid var(--gold);
}

.appointment-button:hover::before {
    border-color: rgba(201, 150, 12, 0.3);
}

.cta-note {
    margin-top: 14px;
    font-size: 0.72em;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* ================================
   CONTACTO Y UBICACIÓN
================================ */
.contact-map-section {
    padding: 40px 5%;
    max-width: 760px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-card:last-child {
    grid-column: 1 / -1;
}

.contact-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-top: 2px solid var(--gold);
    padding: 20px 18px;
    position: relative;
    overflow: hidden;
}

/* Esquina decorativa */
.contact-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 36px;
    height: 36px;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
    opacity: 0.35;
}

.contact-card-label {
    font-size: 0.68em;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.contact-card-value {
    font-weight: 700;
    font-size: 0.95em;
    color: var(--text);
    line-height: 1.5;
}

.contact-card-value a {
    color: var(--text);
}

.contact-card-value a:hover {
    color: var(--gold);
}

/* Tarjeta de redes sociales */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg3);
    border: 1px solid var(--border);
    padding: 6px 12px;
    font-size: 0.78em;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    transition: all 0.2s;
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Horarios */
.hours-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    margin-bottom: 16px;
    overflow: hidden;
}

.hours-header {
    background: var(--bg3);
    padding: 10px 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7em;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    border-bottom: 1px solid var(--border);
    font-size: 0.88em;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    color: #999;
}

.hours-time {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

.hours-closed {
    color: var(--text-muted);
}

/* Mapa */
.map-container {
    position: relative;
    padding-bottom: 50%;
    height: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-top: 2px solid var(--gold);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ================================
   FOOTER
================================ */
.footer {
    background: #000;
    border-top: 1px solid var(--border);
    padding: 20px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 0.72em;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    font-size: 0.72em;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-transform: uppercase;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: var(--gold);
}

/* ================================
   RESPONSIVE — MÓVIL
================================ */
@media (max-width: 600px) {
    .header-inner {
        justify-content: center;
        flex-direction: column;
        text-align: center;
        padding: 20px 5%;
    }

    .logo-image {
        max-width: 160px;
    }

    .hero {
        padding: 48px 5% 36px;
    }

    .hero h1 {
        font-size: 2.2em;
    }

    .price-item {
        flex-wrap: wrap;
    }

    .price-dots {
        display: none;
    }

    .service-name {
        flex: 1;
        font-size: 0.82em;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .social-links {
        flex-direction: column;
    }

    .footer {
        flex-direction: column;
        text-align: center;
    }

    .map-container {
        padding-bottom: 70%;
    }
}