:root {
  --color-primary: #D4AF37;
  --color-secondary: #F5F5DC;
  --color-accent: #FF8C00;
  --color-text: #3B2F2F;
  --color-text-light: #FFFFFF;
  --color-bg: #FAF9F6;
  --color-footer-bg: #CD853F;
  --section-bg-1: #F5F5DC;
  --section-bg-2: #FFF8DC;
  --section-bg-3: #FAEBD7;
  --section-bg-4: #E6D3B2;
  --section-bg-5: #D2B48C;
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Poppins', sans-serif;
  --font-size-base: 16px;
  --spacing-unit: 12px;
  --spacing-xs: calc(var(--spacing-unit) * 0.5);
  --spacing-sm: calc(var(--spacing-unit) * 1);
  --spacing-md: calc(var(--spacing-unit) * 2);
  --spacing-lg: calc(var(--spacing-unit) * 3);
  --spacing-xl: calc(var(--spacing-unit) * 4);
  --spacing-xxl: calc(var(--spacing-unit) * 6);
  --border-radius: 16px;
  --border-radius-organic: 50% 40% 60% 40% / 40% 50% 40% 60%;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15), inset 0 2px 0 rgba(255, 255, 255, 0.7);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 4px 0 rgba(255, 255, 255, 0.8);
  --transition-speed: 0.4s;
  --transition-easing: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-secondary);
  font-size: var(--font-size-base);
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  margin: 0;
  padding: 0;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255, 140, 0, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: var(--spacing-lg);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: var(--spacing-md);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 2rem);
  margin-bottom: var(--spacing-sm);
}

p {
  margin-bottom: var(--spacing-md);
  font-size: 1rem;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-speed) var(--transition-easing);
}

a:hover {
  color: var(--color-accent);
}

ul, ol {
  padding-left: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

li {
  margin-bottom: var(--spacing-xs);
}

.section-bg-1 {
  background-color: var(--section-bg-1);
  color: #000000 !important;
  padding: var(--spacing-xxl) var(--spacing-md);
  border-radius: var(--border-radius-organic);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.section-bg-1::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(245, 245, 220, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  pointer-events: none;
}

.section-bg-2 {
  background-color: var(--section-bg-2);
  color: #000000 !important;
  padding: var(--spacing-xxl) var(--spacing-md);
  border-radius: var(--border-radius-organic);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.section-bg-2::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 248, 220, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  pointer-events: none;
}

.section-bg-3 {
  background-color: var(--section-bg-3);
  color: #000000 !important;
  padding: var(--spacing-xxl) var(--spacing-md);
  border-radius: var(--border-radius-organic);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.section-bg-3::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(250, 235, 215, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  pointer-events: none;
}

.section-bg-4 {
  background-color: var(--section-bg-4);
  color: #000000 !important;
  padding: var(--spacing-xxl) var(--spacing-md);
  border-radius: var(--border-radius-organic);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.section-bg-4::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(230, 211, 178, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  pointer-events: none;
}

.section-bg-5 {
  background-color: var(--section-bg-5);
  color: #000000 !important;
  padding: var(--spacing-xxl) var(--spacing-md);
  border-radius: var(--border-radius-organic);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.section-bg-5::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(210, 180, 140, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  pointer-events: none;
}

.section-bg-1 h1, .section-bg-1 h2, .section-bg-1 h3, .section-bg-1 h4, .section-bg-1 h5, .section-bg-1 h6,
.section-bg-1 p, .section-bg-1 span, .section-bg-1 div {
  color: #000000 !important;
}

.section-bg-2 h1, .section-bg-2 h2, .section-bg-2 h3, .section-bg-2 h4, .section-bg-2 h5, .section-bg-2 h6,
.section-bg-2 p, .section-bg-2 span, .section-bg-2 div {
  color: #000000 !important;
}

.section-bg-3 h1, .section-bg-3 h2, .section-bg-3 h3, .section-bg-3 h4, .section-bg-3 h5, .section-bg-3 h6,
.section-bg-3 p, .section-bg-3 span, .section-bg-3 div {
  color: #000000 !important;
}

.section-bg-4 h1, .section-bg-4 h2, .section-bg-4 h3, .section-bg-4 h4, .section-bg-4 h5, .section-bg-4 h6,
.section-bg-4 p, .section-bg-4 span, .section-bg-4 div {
  color: #000000 !important;
}

.section-bg-5 h1, .section-bg-5 h2, .section-bg-5 h3, .section-bg-5 h4, .section-bg-5 h5, .section-bg-5 h6,
.section-bg-5 p, .section-bg-5 span, .section-bg-5 div {
  color: #000000 !important;
}

footer {
  background-color: var(--color-footer-bg);
  color: #000000 !important;
  padding: var(--spacing-xl) var(--spacing-md);
  text-align: center;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.1);
}

footer h1, footer h2, footer h3, footer h4, footer h5, footer h6,
footer p, footer span, footer div {
  color: #000000 !important;
}

.btn {
  display: inline-block;
  padding: var(--spacing-md) var(--spacing-lg);
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
  color: #FFFFFF !important;
  font-family: var(--font-secondary);
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: var(--border-radius-organic);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-speed) var(--transition-easing), box-shadow var(--transition-speed) var(--transition-easing);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: var(--shadow-lg);
}

.btn:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.card {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: var(--border-radius-organic);
  box-shadow: var(--shadow-md);
  padding: var(--spacing-lg);
  backdrop-filter: blur(10px);
  transition: transform var(--transition-speed) var(--transition-easing), box-shadow var(--transition-speed) var(--transition-easing);
  overflow: hidden;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(212, 175, 55, 0.05) 0%, rgba(255, 140, 0, 0.03) 100%);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.input {
  width: 100%;
  padding: var(--spacing-md);
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius);
  background-color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-secondary);
  font-size: 1rem;
  color: var(--color-text);
  transition: border-color var(--transition-speed) var(--transition-easing), box-shadow var(--transition-speed) var(--transition-easing);
}

.input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.2);
  outline: none;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.fade-in-up {
  animation: fadeInUp 1s var(--transition-easing);
}

.pulse {
  animation: pulse 2s infinite;
}

@media (max-width: 768px) {
  .section-bg-1, .section-bg-2, .section-bg-3, .section-bg-4, .section-bg-5 {
    padding: var(--spacing-lg) var(--spacing-sm);
    border-radius: var(--border-radius);
  }

  .card {
    padding: var(--spacing-md);
  }

  .btn {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.9rem;
  }

  h1 {
    font-size: clamp(1.8rem, 6vw, 3rem);
  }

  h2 {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }
}

@media (min-width: 1024px) {
  nav.hidden {
    display: flex !important;
  }
}


/* Cookie Banner Additional Styles for Tailwind */
.cookie-banner-hover-effect:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (prefers-reduced-motion: reduce) {
    .cookie-banner-hover-effect:hover {
        transform: none;
    }
}