:root {
  --primary: #1a4d6e;
  --secondary: #2c7da0;
  --accent: #f4a261;
  --light: #f8f9fa;
  --dark: #1a1a1a;
  --text: #333;
  --muted: #666;
  --border: #e0e0e0;
  --sea: #61a5c2;
  --sand: #e9c46a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--light);
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--primary);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  font-size: 1.6rem;
  font-weight: bold;
  color: white;
  letter-spacing: 0.5px;
}

.logo span {
  color: var(--sand);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.2rem;
  flex-wrap: wrap;
}

nav a {
  color: white;
  font-size: 0.95rem;
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  transition: background 0.3s;
}

nav a:hover {
  background: rgba(255,255,255,0.2);
  color: white;
}

/* Hero */
.hero {
  background: linear-gradient(rgba(26, 77, 110, 0.6), rgba(44, 125, 160, 0.6)),
              url('https://images.unsplash.com/photo-1509356843151-3e7d96241e11?w=1600') center/cover;
  color: white;
  padding: 6rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

.hero p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}

.hero-sub {
  background: linear-gradient(rgba(26, 77, 110, 0.7), rgba(44, 125, 160, 0.5));
  padding: 4rem 0;
}

.hero-sub h1 {
  font-size: 2.5rem;
}

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

section h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

section h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin: 2rem 0 1rem;
}

section p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.intro {
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
  font-size: 1.1rem;
  color: var(--muted);
}

/* Islands grid */
.islands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.island-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.island-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.island-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.island-card-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.island-card h3 {
  margin-top: 0;
  font-size: 1.4rem;
}

.island-card p {
  color: var(--muted);
  flex-grow: 1;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background: var(--primary);
  color: white;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
  align-self: flex-start;
}

.btn:hover {
  background: var(--secondary);
  color: white;
}

/* Article content */
.article {
  background: white;
  padding: 3rem 0;
}

.article-content {
  max-width: 850px;
  margin: 0 auto;
}

.article-content img.hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.info-box {
  background: var(--light);
  border-left: 4px solid var(--accent);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.info-box h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.fact {
  background: var(--light);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.fact-label {
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
}

.fact-value {
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: bold;
}

ul.checklist {
  list-style: none;
  margin: 1rem 0;
}

ul.checklist li {
  padding: 0.5rem 0 0.5rem 1.8rem;
  position: relative;
}

ul.checklist li::before {
  content: "✦";
  color: var(--accent);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

/* Footer */
footer {
  background: var(--dark);
  color: #ccc;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

footer h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 0.5rem;
}

footer a {
  color: #ccc;
  font-size: 0.95rem;
}

footer a:hover {
  color: var(--sand);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #444;
  font-size: 0.9rem;
  color: #999;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: white;
  padding: 1.2rem;
  display: none;
  z-index: 1000;
  box-shadow: 0 -2px 15px rgba(0,0,0,0.3);
}

.cookie-banner.show {
  display: block;
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-inner p {
  flex: 1;
  min-width: 280px;
  font-size: 0.95rem;
}

.cookie-inner a {
  color: var(--sand);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 0.7rem;
}

.cookie-buttons button {
  padding: 0.6rem 1.3rem;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.3s;
}

.btn-accept {
  background: var(--accent);
  color: var(--dark);
}

.btn-accept:hover {
  background: var(--sand);
}

.btn-decline {
  background: transparent;
  color: white;
  border: 1px solid #888 !important;
}

.btn-decline:hover {
  background: rgba(255,255,255,0.1);
}

/* Policy pages */
.policy {
  background: white;
  padding: 3rem 0;
}

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

.policy-content h2 {
  text-align: left;
  margin-top: 2rem;
  font-size: 1.6rem;
}

.policy-content h3 {
  font-size: 1.25rem;
  margin: 1.5rem 0 0.7rem;
}

.policy-content p, .policy-content li {
  margin-bottom: 0.8rem;
}

.policy-content ul, .policy-content ol {
  margin: 1rem 0 1rem 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1.05rem; }
  section h2 { font-size: 1.7rem; }
  .header-inner { flex-direction: column; align-items: flex-start; }
  nav ul { gap: 0.7rem; }
  nav a { font-size: 0.85rem; }
}
