@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;700&family=Inter:wght@300;400;600&display=swap');

@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
  :root {
    --primary-gold: #c59d5f; /* Barber Gold/Wood color */
    --primary-gold-hover: #b08950;
    --dark-bg: #0f1115;
    --dark-surface: #1a1d24;
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
  }

  html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--dark-bg);
  }

  h1, h2, h3, h4, h5, h6, .font-display {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  body {
    overflow-x: hidden;
  }
}

@layer components {
  .btn-gold {
    @apply inline-flex items-center justify-center px-8 py-3 bg-[#c59d5f] text-white font-display text-lg tracking-wider transition-all duration-300 hover:bg-[#b08950] active:scale-95 shadow-md;
  }
  
  .btn-outline {
    @apply inline-flex items-center justify-center px-8 py-3 border-2 border-[#c59d5f] text-[#c59d5f] font-display text-lg tracking-wider transition-all duration-300 hover:bg-[#c59d5f] hover:text-white active:scale-95;
  }

  .service-card {
    @apply bg-[#1a1d24] border border-white/5 p-8 group transition-all duration-300 hover:-translate-y-2 hover:border-[#c59d5f]/30 hover:shadow-2xl hover:shadow-[#c59d5f]/10;
  }
}

@layer utilities {
  .text-gold { color: var(--primary-gold); }
  .bg-gold { background-color: var(--primary-gold); }
  .border-gold { border-color: var(--primary-gold); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--dark-bg); 
}
::-webkit-scrollbar-thumb {
  background: #334155; 
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-gold); 
}

/* Image Grayscale Hover */
.img-grayscale-hover {
  @apply filter grayscale transition-all duration-500 hover:grayscale-0 cursor-pointer;
}
