@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  font-family: "Inter", sans-serif;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  background-image: url("img/bac 4.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow-x: hidden;
  position: relative;
}

body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent 50%, rgb(0, 0, 0));
  pointer-events: none;
}






.footer {
  background-color: #111;
  color: #f1f1f1;
  padding: 40px 20px;
  font-family: sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-about,
.footer-contact,
.footer-social {
  flex: 1 1 250px;
}

.footer h3,
.footer h4 {
  margin-bottom: 10px;
}

.footer a {
  color: #f1f1f1;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-social i,
.footer-contact i {
  margin-right: 8px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 14px;
}








/* Background-images */
.content {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
}

.content img {
  position: absolute;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.back-1 {
  bottom: 0;
}

.back-2 {
  bottom: 5%;
}

.back-3 {
  bottom: 10%;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 5%;
  background-color: rgba(255, 255, 255, 0.2);
  height: auto;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

nav a {
  font-size: clamp(12px, 2.5vw, 18px);
  font-weight: 500;
  letter-spacing: 1px;
  color: rgb(53, 53, 53);
  padding: 10px 15px;
  text-align: center;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s;
}

nav a.active,
nav a:hover {
  background-color: #16423c;
  color: white;
}

.title {
  position: absolute;
  top: 40vh;
  right: 50%;
  transform: translate(50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 900px;
}

.title h3 {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 10px;
  color: white;
}

.title h1 {
  font-size: clamp(3rem, 12vw, 12rem);
  font-weight: 800;
  letter-spacing: 15px;
  text-transform: uppercase;
  color: white;
  margin: -10px 0;
}

p {
  font-size: clamp(12px, 1.8vw, 16px);
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.info-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 18vh;
  z-index: 1;
}

.cta {
  position: absolute;
  bottom: 8vh;
  display: flex;
  justify-content: center;
  width: 100%;
  z-index: 1;
}

.cta button {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  height: 50px;
  width: 90%;
  max-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
  cursor: pointer;
}

.cta button:hover {
  background-color: rgba(255, 255, 255, 0.8);
  color: rgb(53, 53, 53);
}

.slider {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 5%;
  pointer-events: none;
}

.slider i {
  font-size: clamp(24px, 5vw, 36px);
  color: rgba(255, 255, 255, 0.4);
  pointer-events: auto;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
  .info-wrap {
    bottom: 22vh;
  }

  .cta {
    bottom: 10vh;
  }
}

@media (max-width: 480px) {
  .title {
    top: 35vh;
  }

  .info-wrap {
    bottom: 25vh;
  }

  .cta {
    bottom: 12vh;
  }

  .slider i {
    font-size: 24px;
  }
}
