* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Georgia, "Times New Roman", serif;
}

html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: #2c2c2c;

  background-image: url("foto3.jpg");
  background-size: cover;
  background-position: center 80px;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* ================= HEADER ================= */

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px 40px;

  background: linear-gradient(
    90deg,
    #0b1d3a 0%,
    #142850 40%,
    #0d1117 75%,
    #000000 100%
  );

  color: #f4efe6;
  z-index: 1000;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(194, 168, 120, 0.3);
}

/* ================= LOGO ================= */

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 20%;
}

.logo-text {
  font-size: 2rem;
}

.logo-link {
  text-decoration: none;
  color: #f4efe6;
}

/* ================= NAVIGATION ================= */

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #f4efe6;
  padding: 8px 12px;

  border: 1px solid transparent;
  border-radius: 4px;

  background:
    linear-gradient(
      90deg,
      #0b1d3a 0%,
      #142850 40%,
      #0d1117 75%,
      #000000 100%
    ) padding-box,
    linear-gradient(
      90deg,
      #0b1d3a,
      #000000
    ) border-box;

  transition: 0.3s;
}

.nav-links a:hover {
  background:
    linear-gradient(
      90deg,
      #142850,
      #000000
    ) padding-box,
    linear-gradient(
      90deg,
      #1e90ff,
      #000000
    ) border-box;

  color: white;
}

/* ================= MAIN ================= */

main {
  flex: 1;
  padding-top: 120px;
}

main.home {
  color: white;
}

main.home::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

/* ================= INTRO ================= */

.intro {
  text-align: center;
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
}

/* ================= TITLES ================= */

.section-title {
  text-align: center;
  margin: 40px 0 5px;
  color: rgb(255, 255, 255);
}

.section-info {
  text-align: center;
  color: rgb(255, 238, 190);
}

/* ================= INFO CARDS ================= */

.infocards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px 40px;
}

.info-card {
  background: #fffaf0;
  border: 1px solid #d6c7a1;
  padding: 10px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-box {
  margin-top: 10px;
  font-size: 2rem;
}

/* ================= NEWS ================= */

.news {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px 40px;
}

.info1 {
  background: #fffaf0;
  padding: 20px;
  border: 1px solid #d6c7a1;
  border-radius: 8px;
}

.news-box {
  margin-top: 10px;
}

/* ================= GALLERY ================= */

.gallery-1,
.gallery-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

/* ================= VIDEOS ================= */

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px 40px;
}

.video-card {
  background: #fffaf0;
  border: 1px solid #d6c7a1;
  border-radius: 8px;
  padding: 10px;
}

.video-card iframe {
  width: 100%;
  height: 200px;
  border-radius: 6px;
  display: block;
}

/* ================= CONTACT ================= */

.contact-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 20px 40px;
  flex-wrap: wrap;
}

.contact-box {
  flex: 1;
  min-width: 280px;
  background: #fffaf0;
  border: 1px solid #d6c7a1;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
}

.social-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

/* ================= SOCIAL BUTTONS ================= */

.socials {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

.social-btn {
  text-decoration: none;
  padding: 10px 18px;

  color: #f4efe6;

  border: 1px solid transparent;
  border-radius: 4px;

  background:
    linear-gradient(
      90deg,
      #0b1d3a 0%,
      #142850 40%,
      #0d1117 75%,
      #000000 100%
    ) padding-box,
    linear-gradient(
      90deg,
      #0b1d3a,
      #000000
    ) border-box;

  box-shadow: 2px 2px 0 rgba(0,0,0,0.5);

  transition: 0.2s;
}

.social-btn:hover {
  transform: translate(2px, 2px);

  background:
    linear-gradient(
      90deg,
      #142850,
      #000000
    ) padding-box,
    linear-gradient(
      90deg,
      #1e90ff,
      #000000
    ) border-box;

  box-shadow: none;
}

/* ================= DECORATION ================= */

.vintage-line {
  height: 2px;
  margin: 20px 0;
  background: linear-gradient(to right, transparent, #c2a878, transparent);
  border-radius: 2px;
}

r {
  display: block;
  margin: 8px 0;
  color: #c2a878;
}

/* ================= FOOTER ================= */

footer {
  text-align: center;
  padding: 25px;

  background: linear-gradient(
    90deg,
    #0b1d3a 0%,
    #142850 40%,
    #0d1117 75%,
    #000000 100%
  );

  color: #f4efe6;
  margin-top: 40px;

  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(194, 168, 120, 0.3);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  header {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo-text {
    font-size: 1.6rem;
  }
}

/* ================= FORCE ALL HEADER DROPDOWN TEXT WHITE ================= */

header button,
header button *,
header .dropdown *,
header .dropdown-menu *,
header .dropdown-item {
  color: white !important;
}