/* Main Stylesheet for Anmore */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  --bg-primary: #FCFBF9;
  --bg-secondary: #F5F1EA;
  --bg-tertiary: #EAE3D8;
  --text-primary: #1C1B1A;
  --text-secondary: #6B6864;
  --text-muted: #9E9B96;
  --accent-clay: #C47A5D;
  --accent-clay-hover: #AE6549;
  --accent-sage: #768470;
  --accent-sage-hover: #616F5B;
  --border-color: #E5DFC8;
  --border-color-light: #EFECE6;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Jost', system-ui, -apple-system, sans-serif;
  
  --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  --header-height: 80px;
  --announcement-height: 36px;
  --max-width: 1400px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s ease;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button {
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  outline: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* Layout Containers */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

.section-padding {
  padding: 100px 0;
}
@media (max-width: 992px) {
  .section-padding {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}
/* Note: an additional 480px override (48px) lives in responsive.css,
   which is loaded last and intentionally wins the cascade there. */

/* Screen Reader Only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
