/* Main Stylesheet - Halki */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Josefin+Sans:wght@300;400;600&family=Lora:ital,wght@0,400;0,500;1,400&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
  /* Color Palette */
  --bg-primary: #4B573E;
  --bg-secondary: #3A4530;
  --bg-card: #F5EFE0;
  --text-light: #F0EBD8;
  --text-dark: #2F3627;
  --text-muted: #A8B89A;
  --accent-color: #8B3A2F;
  --price-bg: #FAF3E0;
  --price-border: #4B573E;
  --border-color: #6B7A5C;
  
  /* Fonts */
  --font-display: 'Cormorant Garamond', serif;
  --font-nav: 'Josefin Sans', sans-serif;
  --font-body: 'Lora', serif;
  --font-price: 'Playfair Display', serif;
  
  /* Max width container */
  --container-max-width: 1200px;
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Paper Texture Overlay using a subtle inline SVG noise filter */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0.04;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
}

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

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

/* Container */
.container {
  width: 90%;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* Sections Base Styling */
section {
  padding: 100px 0;
  position: relative;
}

/* Decorative Separator */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 40px auto;
  max-width: 300px;
}

.section-divider::before,
.section-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: var(--border-color);
}

.section-divider svg {
  color: var(--text-muted);
  width: 24px;
  height: 24px;
}
