/* PREMIUM BARBER - CSS Principal */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

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

:root {
  --black: #000000;
  --anthracite: #1A1A1A;
  --white: #FFFFFF;
  --gold: #C9A45B;
  --steel: #7A7A7A;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 164, 91, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
}

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

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--gold);
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 0.8rem 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.5), rgba(0,0,0,0.9));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding: 0 2rem;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

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

.hero p {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--steel);
  margin-bottom: 3rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

/* Sections */
section {
  padding: 6rem 0;
}

.section-dark {
  background: var(--anthracite);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.section-divider {
  width: 80px;
  height: 3px;
  background: var(--gold);
  margin: 1.5rem auto;
}

.section-header p {
  color: var(--steel);
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

/* Cards */
.card {
  background: var(--anthracite);
  border: 1px solid rgba(201, 164, 91, 0.2);
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

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

.card-icon {
  color: var(--gold);
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.card p {
  color: var(--steel);
  line-height: 1.8;
}

/* Service Card */
.service-card {
  background: var(--black);
  padding: 2.5rem;
  border: 1px solid rgba(201, 164, 91, 0.2);
  transition: all 0.3s ease;
}

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

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.service-info h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.service-duration {
  color: var(--steel);
  font-size: 0.9rem;
}

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

.service-description {
  color: var(--steel);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* Team */
.team-member {
  position: relative;
  overflow: hidden;
}

.team-img {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .team-img img {
  transform: scale(1.1);
}

.team-info {
  background: var(--anthracite);
  padding: 2rem;
  border: 1px solid rgba(201, 164, 91, 0.2);
}

.team-info h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.team-experience {
  color: var(--steel);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.team-description {
  color: var(--steel);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.specialty-tag {
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(201, 164, 91, 0.3);
  font-size: 0.85rem;
  color: var(--steel);
}

/* Gallery */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.8rem 2rem;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: var(--black);
}

.gallery-item {
  position: relative;
  height: 400px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-category {
  background: rgba(201, 164, 91, 0.9);
  color: var(--black);
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.gallery-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.gallery-subtitle {
  color: var(--gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-item {
  background: var(--anthracite);
  padding: 2rem;
  border: 1px solid rgba(201, 164, 91, 0.2);
  display: flex;
  gap: 1.5rem;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.contact-item:hover {
  border-color: var(--gold);
}

.contact-icon {
  color: var(--gold);
  font-size: 2rem;
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: var(--steel);
}

.contact-details a:hover {
  color: var(--gold);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: var(--steel);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: var(--anthracite);
  border: 1px solid rgba(201, 164, 91, 0.2);
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.map-container {
  width: 100%;
  height: 500px;
  background: var(--anthracite);
  border: 1px solid rgba(201, 164, 91, 0.2);
  margin-top: 4rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
footer {
  background: var(--anthracite);
  border-top: 1px solid rgba(201, 164, 91, 0.2);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p {
  color: var(--steel);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: var(--steel);
  transition: color 0.3s ease;
}

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

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--gold);
  color: var(--black);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 164, 91, 0.2);
  color: var(--steel);
}

.footer-bottom a {
  color: var(--gold);
}

/* Sticky Button */
.sticky-booking {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--gold);
  padding: 1rem;
  display: none;
}

.sticky-booking .btn-primary {
  width: 100%;
  justify-content: center;
  background: var(--black);
  color: var(--gold);
  font-size: 1.1rem;
  padding: 1.2rem;
}

/* Utilities */
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 0.8rem 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

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

.page-header {
  padding-top: 150px;
  padding-bottom: 80px;
  background: var(--anthracite);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--anthracite);
    flex-direction: column;
    padding: 2rem;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
  }

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

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .sticky-booking {
    display: block;
  }

  section {
    padding: 4rem 0;
  }

  .gallery-item {
    height: 300px;
  }
}
