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

:root {
  --background: 0 0% 100%;
  --foreground: 0 0% 0%; /* Black text */
  
  /* Gold Color #D4AF37 converted to HSL: 46, 65%, 52% */
  --primary: 46 65% 52%;
  --primary-foreground: 0 0% 0%;
  
  --card: 0 0% 100%;
  --card-foreground: 0 0% 0%;
  
  --popover: 0 0% 100%;
  --popover-foreground: 0 0% 0%;
  
  --secondary: 0 0% 98%;
  --secondary-foreground: 0 0% 0%;
  
  --muted: 0 0% 96%;
  --muted-foreground: 0 0% 40%;
  
  --accent: 0 0% 96%;
  --accent-foreground: 46 65% 52%;
  
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 98%;
  
  --border: 0 0% 90%;
  --input: 0 0% 90%;
  --ring: 46 65% 52%;
  
  --radius: 0rem;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
}

/* Custom Utilities */
.stroke-text {
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.2);
}

/* Header Scroll Effect */
header {
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

header:not(.scrolled) .logo-img {
  filter: brightness(0) invert(1);
}

header.scrolled .nav-link {
  color: black;
}

header:not(.scrolled) .nav-link {
  color: white;
}

/* Mobile Menu */
.mobile-menu {
  transition: transform 0.3s ease-in-out;
  transform: translateX(100%);
}

.mobile-menu.open {
  transform: translateX(0);
}
