/* SHINE THE BARBER - Main Stylesheet */

/* ===== CSS Variables ===== */
:root {
    /* Colors */
    --black: #0a0a0a;
    --charcoal: #1a1a1a;
    --dark-gray: #2d2d2d;
    --medium-gray: #4a4a4a;
    --light-gray: #8a8a8a;
    --off-white: #f5f5f5;
    --white: #ffffff;

    --gold: #D4AF37;
    --gold-light: #E8C547;
    --gold-dark: #B8960C;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    --gradient-dark: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 100%);

    /* Typography */
    --font-primary: 'Bebas Neue', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.3);

    /* Transitions */
    --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--off-white);
    background: var(--black);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1.2;
}

h1 { font-size: 72px; }
h2 { font-size: 48px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }

.gold {
    color: var(--gold);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--black);
    border-color: var(--gold);
}

.btn-gold:hover {
    background: var(--gold-light);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
}

.btn-white {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn-white:hover {
    background: transparent;
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--black);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 15px;
}

/* ===== Section Styling ===== */
.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--dark-gray);
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 20px;
    border-left: 3px solid var(--gold);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--light-gray);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* ===== Top Bar ===== */
.top-bar {
    background: var(--charcoal);
    padding: 10px 0;
    border-bottom: 1px solid var(--dark-gray);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.top-bar-left span {
    color: var(--light-gray);
}

.top-bar-left i {
    color: var(--gold);
    margin-right: 8px;
}

.top-bar-right a {
    color: var(--gold);
    font-weight: 500;
}

.top-bar-right a:hover {
    color: var(--gold-light);
}

/* ===== Header ===== */
.header {
    position: sticky;
    top: 0;
    background: var(--black);
    z-index: 1000;
    border-bottom: 1px solid var(--dark-gray);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 28px;
    color: var(--gold);
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 26px;
    letter-spacing: 3px;
    color: var(--white);
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--off-white);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-gold);
    color: var(--black);
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-cta:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?w=1920') center/cover;
    opacity: 0.3;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(26,26,26,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-tag {
    display: inline-block;
    padding: 10px 20px;
    background: var(--dark-gray);
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
    border-left: 3px solid var(--gold);
}

.hero h1 {
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero p {
    font-size: 18px;
    color: var(--light-gray);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--dark-gray);
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-gray);
    font-size: 14px;
}

.hero-stat i {
    color: var(--gold);
    font-size: 18px;
}

.hero-stat strong {
    color: var(--white);
}

/* ===== Services Preview ===== */
.services-preview {
    padding: var(--section-padding);
    background: var(--charcoal);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--dark-gray);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--gold);
    border: 2px solid var(--medium-gray);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    border-color: var(--gold);
    background: var(--gradient-gold);
    color: var(--black);
}

.service-card h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--light-gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.service-card .price {
    display: inline-block;
    padding: 8px 16px;
    background: var(--black);
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
}

/* ===== Why Section ===== */
.why-section {
    padding: var(--section-padding);
    background: var(--black);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-content .intro {
    font-size: 18px;
    color: var(--light-gray);
    margin-bottom: 30px;
    font-style: italic;
}

.why-features {
    display: grid;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--dark-gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gold);
    flex-shrink: 0;
    border: 1px solid var(--medium-gray);
}

.feature-text h4 {
    color: var(--white);
    margin-bottom: 5px;
    font-family: var(--font-secondary);
    font-weight: 600;
}

.feature-text p {
    color: var(--light-gray);
    font-size: 14px;
}

.why-image {
    position: relative;
}

.why-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gradient-gold);
    color: var(--black);
    padding: 25px 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.badge-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 42px;
    line-height: 1;
}

.badge-text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===== Testimonials ===== */
.testimonials {
    padding: var(--section-padding);
    background: var(--charcoal);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--dark-gray);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--medium-gray);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.testimonial-card .stars {
    margin-bottom: 20px;
}

.testimonial-card .stars i {
    color: var(--gold);
    font-size: 16px;
}

.testimonial-card p {
    color: var(--off-white);
    font-size: 15px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-card .author {
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-gold);
    text-align: center;
}

.cta-content h2 {
    color: var(--black);
    margin-bottom: 15px;
}

.cta-content p {
    color: var(--dark-gray);
    font-size: 18px;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-section .btn-white {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.cta-section .btn-white:hover {
    background: var(--charcoal);
}

.cta-section .btn-outline-white {
    color: var(--black);
    border-color: var(--black);
}

.cta-section .btn-outline-white:hover {
    background: var(--black);
    color: var(--white);
}

/* ===== Footer ===== */
.footer {
    background: var(--charcoal);
    padding: 80px 0 30px;
    border-top: 1px solid var(--dark-gray);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 28px;
    color: var(--gold);
}

.footer-logo span {
    font-family: var(--font-primary);
    font-size: 24px;
    letter-spacing: 2px;
    color: var(--white);
}

.footer-col > p {
    color: var(--light-gray);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: var(--dark-gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--off-white);
    border: 1px solid var(--medium-gray);
}

.footer-social a:hover {
    background: var(--gradient-gold);
    color: var(--black);
    border-color: var(--gold);
}

.footer-col h4 {
    color: var(--white);
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: var(--light-gray);
    font-size: 14px;
}

.footer-col ul a:hover {
    color: var(--gold);
}

.contact-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-list i {
    color: var(--gold);
    font-size: 14px;
    margin-top: 4px;
}

.contact-list span,
.contact-list a {
    color: var(--light-gray);
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--dark-gray);
    text-align: center;
}

.footer-bottom p {
    color: var(--light-gray);
    font-size: 13px;
    margin-bottom: 5px;
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--black);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    font-size: 18px;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    h1 { font-size: 52px; }
    h2 { font-size: 38px; }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--black);
        flex-direction: column;
        padding: 30px;
        gap: 25px;
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
        border-bottom: 1px solid var(--dark-gray);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 42px; }
    h2 { font-size: 32px; }

    .top-bar-content {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .hero {
        min-height: 80vh;
        padding: 100px 0 60px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .contact-list li {
        justify-content: center;
    }

    .experience-badge {
        bottom: -20px;
        right: 20px;
        padding: 20px 25px;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 36px; }

    .logo-text {
        font-size: 20px;
    }

    .btn-lg {
        padding: 15px 30px;
        font-size: 14px;
    }
}
