/* Adobe Garamond Pro via Google Fonts alternative - EB Garamond is closest free match */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,700;1,400;1,700&display=swap');

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

@layer base {
  html {
    scroll-behavior: smooth;
  }
  body {
    font-family: 'EB Garamond', 'Adobe Garamond Pro', Garamond, 'Times New Roman', serif;
    @apply text-black bg-white antialiased;
  }
  h1, h2, h3, h4, h5, h6 {
    font-family: 'EB Garamond', 'Adobe Garamond Pro', Garamond, 'Times New Roman', serif;
  }
  a {
    @apply transition-opacity duration-200;
  }
  a:hover {
    @apply opacity-70;
  }
}

@layer components {
  .nav-link {
    @apply text-sm tracking-wider uppercase;
  }
  .section-padding {
    @apply px-6 md:px-12 lg:px-20;
  }
  .btn-primary {
    @apply inline-block border border-black px-8 py-3 text-sm tracking-widest uppercase hover:bg-black hover:text-white transition-all duration-300;
  }
  .btn-primary-light {
    @apply inline-block border border-white px-8 py-3 text-sm tracking-widest uppercase text-white hover:bg-white hover:text-black transition-all duration-300;
  }
  .edition-card {
    @apply group cursor-pointer;
  }
  .edition-card img {
    @apply transition-transform duration-500 group-hover:scale-105;
  }
  .footer-link {
    @apply text-sm tracking-wider uppercase hover:opacity-70 transition-opacity;
  }
}
