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

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
}

header {
  background: transparent;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 10%;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
  background-color: rgba(0, 0, 0, 1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo img {
  height: 110px;
  width: auto;
  display: block;
}

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

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

nav ul li a:hover {
  text-decoration: underline;
}

.hero {
  background: url('./images/hero.png') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 3rem 10% 0.1rem;
  padding-top: 100px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.hero a {
  background-color: #c40000;
  color: #fff;
  padding: 1rem 2rem;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  transform: scale(1);
}

.hero a:hover {
  background-color: #e00000;
  transform: scale(1.05);
}

.about {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  color: #000;
  min-height: 100vh;
}

.about-text,
.about-image {
  width: 50%;
  padding: 4rem 2%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-text {
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: fadeInLeft 1s ease forwards;
}

.about-text h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1.125rem;
  line-height: 1.6;
}

.about-image {
  animation: fadeInRight 1s ease forwards;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.contact {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  background-color: #1a1a1a;
  color: #000;
  padding: 4rem 10%;
  gap: 30px;
}

.contact-form {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  background-color: #111;
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

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

.contact-form input,
.contact-form textarea {
  background-color: #1a1a1a;
  border: none;
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
}

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

.contact-form button {
  padding: 1rem 2rem;
  font-size: 1rem;
  background-color: #c40000;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #e00000;
}

.contact-map {
  width: 100%;
  background-color: #1a1a1a;
  padding: 4rem 5% 2rem;
}

.contact-map h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #FFFFFF !important;
}

.contact-map .map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

.contact-box {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  background-color: #111;
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.contact-box .contact-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1rem;
}

.contact-box h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
  line-height: 1.2;
}

.contact-box p {
  line-height: 1.6;
  color: #fff;
  font-size: 1.1rem;
}

.contact-item {
  background-color: #1a1a1a;
  padding: 1.5rem;
  border-radius: 12px;
}

.contact-item label {
  display: block;
  font-size: 1rem;
  color: #888;
  margin-bottom: 0.5rem;
}

.contact-item .value {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
}

#formMessage {
  color: green;
  background-color: #fff !important;
  border: 2px solid white;
  padding: 1rem 1.5rem;
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
  border-radius: 8px;
  font-weight: 500;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}