/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors matching the logo */
    --color-black: #000000;
    --color-gold: #D4AF37;
    --color-gold-light: #E5C158;
    --color-gold-dark: #B8960E;
    --color-cream: #F5F5DC;
    --color-white: #FFFFFF;
    --color-gray: #333333;
    --color-gray-light: #666666;
    
    /* Fonts */
    --font-heading: 'Cinzel', serif;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-black);
    color: var(--color-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-cream);
}

.gold-text {
    color: var(--color-gold);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.navbar.scrolled {
    padding: 15px 0;
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    color: var(--color-gold);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.logo-image {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(212, 175, 55, 0.3));
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    color: var(--color-gold);
}

.logo i {
    font-size: 24px;
}

.logo:hover {
    color: var(--color-gold-light);
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--color-cream);
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--color-gold);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: var(--color-gold);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--color-gold);
    border-radius: 0;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-black);
    border-color: var(--color-gold);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.btn-outline:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 0 100px;
    background: 
        radial-gradient(ellipse at top, rgba(212, 175, 55, 0.1), transparent),
        radial-gradient(ellipse at bottom, rgba(212, 175, 55, 0.05), transparent),
        var(--color-black);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(212, 175, 55, 0.03) 2px,
            rgba(212, 175, 55, 0.03) 4px
        );
    pointer-events: none;
}

.ornament {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    pointer-events: none;
}

.ornament-top-left {
    top: 100px;
    left: 50px;
    border-right: none;
    border-bottom: none;
}

.ornament-top-right {
    top: 100px;
    right: 50px;
    border-left: none;
    border-bottom: none;
}

.hero-content {
    text-align: center;
    z-index: 10;
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-block;
    padding: 10px 30px;
    border: 2px solid var(--color-gold);
    border-left: none;
    border-right: none;
    margin-bottom: 30px;
    animation: fadeIn 1.5s ease;
}

.hero-badge span {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--color-gold);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 90px;
    font-weight: 900;
    color: var(--color-cream);
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 30px;
    line-height: 1;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    animation: fadeInScale 1s ease 0.3s backwards;
}

.subtitle-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.subtitle-ornament .line {
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--color-gold), transparent);
}

.subtitle-ornament i {
    color: var(--color-gold);
    font-size: 24px;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 8px;
    color: var(--color-gold);
    margin-bottom: 30px;
}

.hero-description {
    font-size: 18px;
    color: var(--color-cream);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-info {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-cream);
}

.info-item i {
    color: var(--color-gold);
    font-size: 20px;
}

/* Barber Pole Animation */
.barber-pole {
    position: absolute;
    bottom: 50px;
    right: 100px;
    width: 40px;
    height: 200px;
    background: var(--color-gray);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.pole-stripes {
    width: 100%;
    height: 400%;
    background: repeating-linear-gradient(
        45deg,
        var(--color-gold) 0,
        var(--color-gold) 20px,
        transparent 20px,
        transparent 40px,
        #8B0000 40px,
        #8B0000 60px,
        transparent 60px,
        transparent 80px
    );
    animation: poleRotate 3s linear infinite;
}

@keyframes poleRotate {
    0% { transform: translateY(0); }
    100% { transform: translateY(-200px); }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-badge {
    display: inline-block;
    padding: 8px 25px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    color: var(--color-cream);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.title-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.title-ornament .line {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--color-gold), transparent);
}

.title-ornament i {
    color: var(--color-gold);
    font-size: 20px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: var(--section-padding);
    background: 
        linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        var(--color-black);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border: 3px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.image-frame i {
    font-size: 100px;
    color: var(--color-gold);
    opacity: 0.5;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    border: 5px solid var(--color-black);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: pulse 2s ease-in-out infinite;
}

.experience-badge .number {
    font-size: 36px;
    font-weight: 900;
    color: var(--color-black);
    font-family: var(--font-heading);
    line-height: 1;
}

.experience-badge .text {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.about-text p {
    color: var(--color-cream);
    opacity: 0.9;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-cream);
}

.feature-item i {
    color: var(--color-gold);
    font-size: 18px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: var(--section-padding);
    background: var(--color-black);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-gold), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(0, 0, 0, 0.5));
    border: 2px solid rgba(212, 175, 55, 0.2);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.service-card.featured {
    border-color: var(--color-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(0, 0, 0, 0.5));
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-black);
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    border-radius: 50%;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-icon i {
    font-size: 36px;
    color: var(--color-black);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--color-gold);
}

.service-card p {
    color: var(--color-cream);
    opacity: 0.9;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
}

.service-price {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-gold);
    margin-top: 20px;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    padding: var(--section-padding);
    background: 
        linear-gradient(180deg, rgba(212, 175, 55, 0.03) 0%, transparent 100%),
        var(--color-black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    max-width: 100%;
}

.gallery-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    transition: all 0.4s ease;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
    z-index: 10;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    text-align: center;
    color: var(--color-cream);
}

.gallery-info h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--color-gold);
    margin: 0 0 5px 0;
}

.gallery-info p {
    font-size: 12px;
    margin: 0;
    opacity: 0.9;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.8));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-placeholder {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(0, 0, 0, 0.9));
}

.gallery-placeholder i {
    font-size: 50px;
    color: var(--color-gold);
}

.gallery-placeholder span {
    color: var(--color-cream);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team {
    padding: var(--section-padding);
    background: var(--color-black);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-card {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(0, 0, 0, 0.5));
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
}

.team-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.team-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 25px;
    border-radius: 50%;
    border: 3px solid var(--color-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-image i {
    font-size: 70px;
    color: var(--color-gold);
    opacity: 0.7;
}

/* Fotos reais dos barbeiros carregadas dinamicamente */
.team-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 25px;
    border-radius: 50%;
    border: 3px solid var(--color-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(0, 0, 0, 0.5));
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    position: relative;
}

.team-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.35);
    pointer-events: none;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.05);
}

.team-card h3 {
    font-size: 24px;
    color: var(--color-cream);
    margin-bottom: 10px;
}

.role {
    color: var(--color-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    margin-bottom: 20px;
}

.team-specialties {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.team-specialties span {
    padding: 5px 15px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-cream);
    font-size: 12px;
    border-radius: 20px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: var(--section-padding);
    background: 
        linear-gradient(180deg, transparent 0%, rgba(212, 175, 55, 0.03) 50%, transparent 100%),
        var(--color-black);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(0, 0, 0, 0.5));
    border: 2px solid rgba(212, 175, 55, 0.2);
    padding: 40px 30px;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: var(--color-gold);
    font-size: 18px;
}

.testimonial-text {
    color: var(--color-cream);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    opacity: 0.9;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    font-size: 30px;
    color: var(--color-black);
}

.author-info h4 {
    color: var(--color-cream);
    font-size: 18px;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--color-gold);
    font-size: 14px;
    opacity: 0.9;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: var(--section-padding);
    background: var(--color-black);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-gold), transparent);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info p {
    color: var(--color-cream);
    opacity: 0.9;
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 20px;
    color: var(--color-black);
}

.contact-text h4 {
    color: var(--color-gold);
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-text p {
    color: var(--color-cream);
    opacity: 0.9;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    border: 2px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-5px);
}

/* Contact Map */
.contact-map {
    width: 100%;
    height: 500px;
    border: 3px solid var(--color-gold);
    background: rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-map::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    pointer-events: none;
    z-index: 1;
}

.contact-map iframe {
    filter: grayscale(50%) contrast(1.2);
    transition: filter 0.3s ease;
}

.contact-map:hover iframe {
    filter: grayscale(0%) contrast(1);
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.contact-actions .btn {
    width: 100%;
    justify-content: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: 
        linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, var(--color-black) 100%),
        var(--color-black);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 60px 0 30px;
}

.footer-content {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.footer-logo i {
    font-size: 28px;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 18px;
    letter-spacing: 4px;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.footer-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.footer-ornament .line {
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-gold), transparent);
}

.footer-ornament i {
    color: var(--color-gold);
    font-size: 18px;
}

.footer-brand p {
    color: var(--color-cream);
    opacity: 0.8;
    font-size: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-bottom p {
    color: var(--color-cream);
    opacity: 0.7;
    font-size: 14px;
    margin-bottom: 10px;
}

.made-with {
    color: var(--color-cream);
    opacity: 0.6;
}

.made-with i {
    color: #8B0000;
    animation: heartbeat 1.5s ease-in-out infinite;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    25%, 75% {
        transform: scale(1.2);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    .hero-title {
        font-size: 60px;
        letter-spacing: 5px;
    }

    .section-title {
        font-size: 38px;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-map {
        height: 400px;
    }

    .services-grid,
    .gallery-grid,
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 12px;
    }

    .ornament {
        display: none;
    }

    .barber-pole {
        right: 20px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(212, 175, 55, 0.2);
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 48px;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 24px;
        letter-spacing: 5px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-info {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .section-title {
        font-size: 32px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .experience-badge {
        bottom: -20px;
        right: -20px;
        width: 120px;
        height: 120px;
    }

    .experience-badge .number {
        font-size: 28px;
    }

    .experience-badge .text {
        font-size: 10px;
    }

    .barber-pole {
        display: none;
    }

    .services-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .team-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .team-photo {
        width: 170px;
        height: 170px;
    }
    
    .contact-map {
        height: 350px;
    }
    
    .contact-actions {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .logo span {
        font-size: 24px;
    }

    .hero-title {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .hero-description {
        font-size: 16px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .section-title {
        font-size: 28px;
    }

    .service-price {
        font-size: 28px;
    }
    
    .team-photo {
        width: 150px;
        height: 150px;
    }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}
