:root {
  --primary: #2a9d8f;
  --secondary: #264653;
  --accent: #e9c46a;
  --light: #f4f4f4;
  --dark: #1b1b1b;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--light);
  color: var(--dark);
}

/* --- HEADER --- */
header {
  background-color: var(--secondary);
  color: white;
  padding: 2rem 1rem;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  text-align: left;
}

header img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
}

.header-text h1 {
  font-size: 2rem;
  font-weight: 700;
}

.header-text p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--accent);
}

/* --- NAVBAR --- */
nav {
  background-color: var(--primary);
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
  flex-wrap: wrap;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

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

/* --- SECTIONS --- */
section {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 1rem;
}

section h2 {
  color: var(--secondary);
  margin-bottom: 1rem;
  border-left: 6px solid var(--primary);
  padding-left: 10px;
}

section p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* --- CTA BUTTON --- */
.cta {
  text-align: center;
  margin-top: 2rem;
}

.cta a {
  background-color: var(--primary);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.cta a:hover {
  background-color: var(--secondary);
}

/* --- CONTACT --- */
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.contact-info a {
  color: var(--accent);
  text-decoration: none;
  transition: 0.3s;
}

.contact-info a:hover {
  color: white;
}

/* --- FOOTER --- */
footer {
  background-color: var(--secondary);
  color: white;
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.9rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 600px) {
  .header-content {
    flex-direction: column;
    text-align: center;
  }

  .header-text h1 {
    font-size: 1.6rem;
  }
}
