/* ==============================
  GENERAL RESET
============================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f7f8f6;
  color: #2d3436;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

/* ==============================
  CONTAINER
============================== */

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* ==============================
  HEADER
============================== */

header {
  background-color: #ffffff;
  border-bottom: 1px solid #dddddd;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  min-height: 75px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 25px;
}

.logo {
  font-size: 1.4rem;
  font-weight: bold;
  color: #204f58;
}

nav ul {
  list-style: none;

  display: flex;
  gap: 25px;
}

nav a {
  color: #333333;
  font-weight: bold;
}

nav a:hover {
  color: #32707d;
}

/* ==============================
  HERO
============================== */

.hero {
  min-height: 550px;

  display: flex;
  align-items: center;

  background:
    linear-gradient(rgba(20, 55, 63, 0.75), rgba(20, 55, 63, 0.75)),
    url("images/Logo.png") no-repeat;

  background-size: cover;
  background-position: right 90px center;
  background-size: 20%;

  color: white;
}

.hero-content {
  max-width: 700px;
  padding: 80px 0;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.logo-image {
  width: 150px;
  height: auto;
  margin-top: 20px;
  float: right;
  transform: rotate(-90deg);
}

/* ==============================
  BUTTONS
============================== */

.button {
  display: inline-block;

  background-color: #32707d;
  color: white;

  padding: 13px 25px;

  border-radius: 6px;

  font-weight: bold;

  transition: 0.2s;
}

.button:hover {
  background-color: #265b65;
  transform: translateY(-2px);
}

.button-light {
  background-color: white;
  color: #204f58;
}

.button-light:hover {
  background-color: #eeeeee;
}

/* ==============================
  SECTIONS
============================== */

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  color: #204f58;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.section-title p {
  max-width: 650px;
  margin: auto;
  color: #666666;
}

/* ==============================
  WELCOME
============================== */

.welcome-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 50px;
  align-items: center;
}

.welcome-text h2 {
  color: #204f58;
  font-size: 2rem;
  margin-bottom: 20px;
}

.welcome-text p {
  margin-bottom: 15px;
}

.welcome-image img {
  width: 100%;
  height: 350px;

  object-fit: cover;

  border-radius: 10px;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* ==============================
  MEETING INFORMATION
============================== */

.meeting-section {
  background-color: #eaf1ef;
}

.meeting-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;
}

.meeting-card {
  background-color: white;

  padding: 30px;

  border-radius: 10px;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.meeting-card h3 {
  color: #204f58;
  margin-bottom: 10px;
}

.meeting-card p {
  margin-bottom: 7px;
}

.meeting-day {
  font-size: 1.25rem;
  font-weight: bold;
  color: #32707d;
}

/* ==============================
  FIRST MEETING
============================== */

.first-meeting {
  background-color: #ffffff;
}

.info-box {
  max-width: 850px;

  margin: auto;

  background-color: #f2f5f3;

  padding: 40px;

  border-left: 6px solid #32707d;

  border-radius: 8px;
}

.info-box h3 {
  color: #204f58;
  margin-bottom: 15px;
}

.info-box ul {
  margin-top: 20px;
  margin-left: 25px;
}

.info-box li {
  margin-bottom: 10px;
}

/* ==============================
  LOCATION
============================== */

.location {
  background-color: #204f58;
  color: white;
}

.location .section-title h2,
.location .section-title p {
  color: white;
}

.location-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 40px;
  align-items: center;
}

.location-info h3 {
  font-size: 1.7rem;
  margin-bottom: 15px;
}

.location-info p {
  margin-bottom: 10px;
}

.map-placeholder {
  background-color: #ffffff;
  color: #333333;

  min-height: 300px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  border-radius: 10px;

  padding: 30px;
}

/* ==============================
    CONTACT
============================== */

.contact-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;

  text-align: center;
}

.contact-card {
  background-color: white;

  padding: 30px;

  border-radius: 10px;

  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.07);
}

.contact-card h3 {
  color: #204f58;
  margin-bottom: 10px;
}

/* ==============================
    MESSAGE / QUOTE
============================== */

.hope-message {
  text-align: center;

  background-color: #32707d;
  color: white;

  padding: 70px 20px;
}

.hope-message p {
  max-width: 750px;
  margin: auto;

  font-size: 1.5rem;
  line-height: 1.7;
}

/* ==============================
    FOOTER
============================== */

footer {
  background-color: #182f34;
  color: #dddddd;

  padding: 35px 20px;

  text-align: center;
}

footer p {
  margin-bottom: 7px;
}

footer a {
  color: white;
}

.designer {
  margin-top: 15px;
  font-size: 0.85rem;
  color: #aaaaaa;
}

/* ==============================
    MOBILE
============================== */

@media (max-width: 800px) {
  .navbar {
    flex-direction: column;
    padding: 20px 0;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    min-height: 500px;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .welcome-grid,
  .meeting-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 60px 0;
  }
}

@media (max-width: 500px) {
  nav ul {
    gap: 12px;
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.05rem;
  }

  .info-box {
    padding: 25px;
  }
}

/* ==============================
   IMPROVED MOBILE / TABLET LAYOUT
============================== */

@media (max-width: 800px) {
  .container {
    width: 92%;
  }

  header {
    position: static;
  }

  .navbar {
    min-height: auto;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
  }

  .logo {
    font-size: 1.15rem;
    text-align: center;
    line-height: 1.3;
  }

  nav {
    width: 100%;
  }

  nav ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
  }

  nav a {
    font-size: 0.95rem;
  }

  .hero {
    min-height: auto;
    padding: 55px 0 280px;
    text-align: center;
    background-position: center bottom 35px;
    background-size: auto, 190px;
  }

  .hero-content {
    max-width: 100%;
    padding: 0;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero p {
    font-size: 1.1rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .welcome-grid,
  .meeting-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .welcome-grid,
  .location-grid {
    gap: 30px;
  }

  .welcome-image img {
    height: 300px;
  }

  .meeting-card,
  .contact-card {
    width: 100%;
  }

  .map-placeholder {
    width: 100%;
    min-height: auto;
    padding: 15px;
  }

  .map-placeholder > div {
    width: 100%;
  }

  .map-placeholder iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 300px;
    border: 0;
  }

  .location-info {
    text-align: center;
  }

  section {
    padding: 60px 0;
  }
}

@media (max-width: 500px) {
  .container {
    width: 90%;
  }

  .navbar {
    padding: 14px 0;
  }

  nav ul {
    gap: 8px 12px;
  }

  nav a {
    font-size: 0.86rem;
  }

  .hero {
    padding: 45px 0 235px;
    background-position: center bottom 25px;
    background-size: auto, 155px;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.15;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-buttons .button {
    width: 100%;
    text-align: center;
  }

  .section-title {
    margin-bottom: 32px;
  }

  .section-title h2,
  .welcome-text h2 {
    font-size: 1.8rem;
  }

  .welcome-image img {
    height: 240px;
  }

  .meeting-card,
  .contact-card {
    padding: 22px;
  }

  .info-box {
    padding: 25px 20px;
  }

  .location-info h3 {
    font-size: 1.45rem;
  }

  .map-placeholder iframe {
    height: 260px;
  }

  .hope-message {
    padding: 50px 20px;
  }

  .hope-message p {
    font-size: 1.15rem;
  }

  footer {
    padding: 28px 18px;
  }
}
