@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Inter:wght@300;400;600&display=swap');

:root {
  --bg: #f8f4f1;
  --accent: #d9a7a0;
  --text: #3a2e2e;
  --light: #ffffff;
  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 10%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  line-height: 1.2;
}

.logo p {
  font-size: 0.9rem;
  color: #6d5c5c;
}

nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

/* HERO */
.hero {
  position: relative;
  height: 60vh;
  background: var(--accent);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--light);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1rem;
}

/* RODO SECTION */
.rodo-section {
  padding: 80px 10%;
  background: var(--bg);
}

.rodo-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.rodo-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 25px;
}

.rodo-section h4 {
  font-size: 1.2rem;
  margin-top: 30px;
  margin-bottom: 10px;
}

.rodo-section p,
.rodo-section li {
  color: #574c4c;
  margin-bottom: 15px;
}

.rodo-section ul {
  margin-left: 20px;
  list-style-type: disc;
}

.rodo-section .link {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  transition: var(--transition);
}

.rodo-section .link:hover {
  color: #c68982;
  border-color: #c68982;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px 10%;
  background: #f3eae7;
  font-size: 0.9rem;
  color: #7a6b6b;
}

table {
  border: 2px dotted black;
}

tr,
td,
th {
  border: 1px dotted black;
}