:root {
  --primary: #00A6A6;     /* teal from logo */
  --accent: #F2C200;      /* yellow from logo */
  --bg: #E8F4F4;          /* soft teal-gray background */
  --bg-card: #FFFFFF;     /* clean card background */
  --text: #1F2A2A;
  --muted: #4F5F5F;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* HEADER */
.site-header {
  background: var(--bg-card);
  border-bottom: 4px solid var(--primary);
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
    height: 180px;     /* 3–4× bigger */
    width: auto;       /* keeps proportions */
    display: block;
}


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

.tagline {
  font-size: 0.85rem;
  color: var(--muted);
}

nav {
  margin-top: 0.5rem;
}

nav a {
  margin-right: 1rem;
  text-decoration: none;
  color: var(--primary);
  font-weight: bold;
}

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

/* HERO */
.hero {
  padding: 2rem 1.5rem;
  background: var(--bg);
  border-bottom: 4px solid var(--accent);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.hero h1 {
  color: var(--primary);
  font-size: 3rem;        /* bigger title */
  font-weight: 800;       /* stronger */
  letter-spacing: 0.5px;  /* more professional */
  margin-bottom: 0.75rem;
}


.hero p {
  max-width: 40rem;
  color: var(--muted);
  line-height: 1.6;
}

.btn-primary {
  background: var(--accent);
  color: #000;
  padding: 0.7rem 1.4rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

.btn-primary:hover {
  background: #e0b000;
}

/* RIGHT PANEL */
.hero-panel {
  background: var(--bg-card);
  padding: 1.5rem;
  border-left: 6px solid var(--primary);
  border-radius: 6px;
}

.hero-panel h2 {
  margin-top: 0;
  color: var(--accent);
}

.hero-panel ul {
  padding-left: 1.2rem;
  color: var(--muted);
}

/* GRID */
.grid {
  padding: 2rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.grid article {
  background: var(--bg-card);
  padding: 1.5rem;
  border-left: 6px solid var(--primary);
  border-radius: 6px;
}

.grid h3 {
  margin-top: 0.5rem;
}

  
  @media (max-width: 600px) {
    .hero h1 {
        font-size: 2.4rem;   /* still big on mobile */
        font-weight: 700;
    }
}
.site-footer {
  padding: 1.5rem;
  background: var(--bg-card);
  border-top: 4px solid var(--primary);
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
  margin-top: 2rem;
}

.footer-social {
  display: flex !important;
  justify-content: center !important;
  gap: 1.2rem !important;
  margin-top: 1rem !important;
}

.footer-social a {
  font-size: 2rem !important;
  color: #00A6A6 !important;
}
.footer-languages {
  margin-top: 10px;
  display: block;
}
.footer-languages a {
  margin-right: 10px;
  font-size: 1.4rem;
}
.content-wrapper {
  max-width: 1200px;   /* keeps text readable on large screens */
  margin: 0 auto;      /* centers the content */
  padding: 2rem;       /* adds space around the text */
  line-height: 1.6;    /* improves readability */
}
.legal-section {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.legal-section h2 {
  margin-bottom: 1rem;
}

.page-header h1 {
  margin-bottom: 1.5rem;
}
.project-section {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.project-section h2 {
  margin-bottom: 1rem;
}

.page-header h1 {
  margin-bottom: 1.5rem;
}

ul {
  margin-left: 1.2rem;
  line-height: 1.6;
}
.workshop-section {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.workshop-section h2 {
  margin-bottom: 1rem;
}

ul {
  margin-left: 1.2rem;
  line-height: 1.6;
}

.page-header h1 {
  margin-bottom: 1.5rem;
}

.report-section {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.report-section h2 {
  margin-bottom: 1rem;
}

ul {
  margin-left: 1.2rem;
  line-height: 1.6;
}
.book-section {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.book-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.book-cover {
  width: 160px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.book-info h3 {
  margin-top: 0;
}

.contact-section {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: #f9f9f9;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 6px;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  padding: 12px 20px;
  font-size: 1.1rem;
  background: #004aad;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.contact-form button:hover {
  background: #00337a;
}




