@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Playfair+Display:wght@700&display=swap');

:root {
  --primary: #1A202C;
  --accent: #C5A059;
  --bg: #F7FAFC;
  --text: #2D3748;
  --text-light: #718096;
  --white: #FFFFFF;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  margin: 0;
}

main {
  flex: 1;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
}

h1 { 
  font-size: 3.5rem; 
  margin-bottom: 3rem; 
  position: relative;
  padding-bottom: 1rem;
  text-align: center;
}

h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--accent);
  border-radius: 2px;
}

h2 { 
  font-size: 2.25rem; 
  margin-top: 3rem;
  margin-bottom: 0.375rem;
  text-align: left;
}

h3 { font-size: 1.75rem; margin-bottom: 0.375rem; }
h4 { font-size: 1.5rem; margin-bottom: 0.375rem; }

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

.nav-menu, .nav-menu li {
  list-style: none;
}

.section-content ul {
  list-style: disc;
  margin-left: 1.5rem;
}

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

/* Layout */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Header & Navigation */
header {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  padding: 1rem 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  max-height: 50px;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-menu a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--primary);
}

.nav-menu a:hover {
  color: var(--accent);
}

/* Hero Section */
.hero {
  padding: 6rem 0 4rem;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* Content Sections */
section {
  padding: 4rem 0;
}

.section-content {
  max-width: 800px;
  margin: 0 auto;
}

.section-content h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  text-align: left;
}

.section-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.section-content p + p {
  margin-top: 0;
}

/* Footer */
footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 1rem 0;
  text-align: center;
  margin-top: 0;
  margin-bottom: 15px;
}

footer p {
  font-size: 0.875rem;
  color: #A0AEC0;
  margin-bottom: 0;
}

/* Cookie Banner */
#consentBanner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 90%;
  max-width: 600px;
}

.consent-text {
  font-size: 0.875rem;
  color: var(--text);
}

.consent-text a {
  color: var(--accent);
  text-decoration: underline;
}

.btn-consent {
  background-color: var(--primary);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu {
    display: none; /* Simple approach for now, could implement a burger menu */
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  #consentBanner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}
