/* BASE STYLES */

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

body {
  font-family: 'Inter', sans-serif;
  background-color: #F4F1ED;
  color: #222;
  line-height: 1.6;
}

h1, h2, h3 {
  font-weight: 500;
  text-align: center;
}

p {
  font-weight: 300;
}

a {
  text-decoration: none;
  color: inherit;
}

/* HEADER & NAVIGATION */

header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 90px;
  background-color: #5B3A29;
  display: flex;
  align-items: center;
  padding: 0 40px;
  z-index: 1000;
}

#headerLogo {
  height: 55px;
}

#Nav-Links {
  list-style: none;
  display: flex;
  margin-left: auto;
}

#Nav-Links li a {
  color: white;
  padding: 35px 18px;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: background 0.3s ease;
  border-right: 1px solid rgba(255,255,255,0.3);
}

#Nav-Links li:last-child a {
  border-right: none;
}

#Nav-Links li a:hover {
  background-color: #8C5E3C;
}

/* TITLES */

.titlecontainer {
  width: 100%;
  height: 100vh;
  position: relative;
  margin-top: 90px; /* offset fixed header */
}

.titleimage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(75%);
}

.title {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.5rem;
  color: white;
  font-weight: 600;
  letter-spacing: 2px;
  text-align: center;
}

/* INTRO */

.firstInfo {
  padding: 80px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.firstInfo h1 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.firstInfo p {
  font-size: 1.05rem;
  text-align: center;
}

/* IMAGE & TEXT */

.row {
  display: flex;
  height: 450px;
  width: 100%;
}

.img-div,
.text {
  flex: 1;
}

.img-div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  background-color: #E8E2DA;
  transition: background 0.3s ease;
}

.text:hover {
  background-color: #D8CFC5;
}

.text h1 {
  margin-bottom: 15px;
}

.text p {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}

/* LANGUAGE */

#information {
  padding: 60px 20px;
}

#question-boxes {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.question {
  width: 45%;
  background-color: #FFFFFF;
  padding: 25px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
}

.question h1 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.question p {
  font-size: 0.95rem;
}

/* CONTACT */

#contactboxes {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  flex-wrap: wrap;
}

#phone, #location, #email {
  width: 300px;
  height: 220px;
  background-color: white;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

#phone-img, #location-img, #email-img {
  width: 45px;
  height: 45px;
}

#phone-img img,
#location-img img,
#email-img img {
  width: 100%;
  height: 100%;
}

/* FOOTER */

footer {
  background-color: #5B3A29;
  color: white;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  margin-top: 60px;
}

/* RESPONSE */

@media (max-width: 900px) {

  .row {
    flex-direction: column;
    height: auto;
  }

  .question {
    width: 90%;
  }

  header {
    padding: 0 20px;
  }

  #Nav-Links li a {
    padding: 30px 10px;
    font-size: 0.8rem;
  }

  .title {
    font-size: 2.2rem;
  }
