/* ==========================================
        CONTACT PAGE
        SABRE DE PLEIADES
========================================== */

/* ==========================
        GLOBAL
========================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;

  background: #050b1c;

  color: white;

  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Cinzel", serif;
}

p {
  color: #d9d9d9;

  line-height: 1.9;
}

/* ==========================
        HERO SECTION
========================== */

.contact-hero {
  min-height: 75vh;

  display: flex;

  justify-content: center;

  align-items: center;

  text-align: center;

  padding: 120px 8% 80px;

  position: relative;

  overflow: hidden;
}

.contact-hero::before {
  content: "";

  position: absolute;

  inset: 0;

  background: radial-gradient(
    circle at top,

    #4b2a7d,
    #111b4b 45%,

    #050b1c 90%
  );

  z-index: -2;
}

.contact-hero::after {
  content: "";

  position: absolute;

  inset: 0;

  background-image:
    radial-gradient(white 1px, transparent 1px),
    radial-gradient(#ffd76a 1px, transparent 1px);

  background-size:
    90px 90px,
    150px 150px;

  opacity: 0.2;

  animation: starsMove 80s linear infinite;

  z-index: -1;
}

@keyframes starsMove {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-300px);
  }
}

.contact-hero h5 {
  color: #ffd76a;

  letter-spacing: 4px;

  text-transform: uppercase;

  margin-bottom: 20px;
}

.contact-hero h1 {
  font-size: 60px;

  margin-bottom: 25px;
}

.contact-hero p {
  max-width: 750px;

  margin: auto;

  font-size: 18px;
}

/* ==========================
        CONTACT SECTION
========================== */

.contact-section {
  padding: 100px 8%;
}

.contact-info h2,
.contact-box h2 {
  color: #ffd76a;

  font-size: 40px;

  margin-bottom: 30px;
}

/* ==========================
        CONTACT ITEMS
========================== */

.contact-item {
  margin-top: 30px;

  padding: 25px;

  background: rgba(255, 255, 255, 0.06);

  border-radius: 18px;

  border: 1px solid rgba(255, 255, 255, 0.1);

  transition: 0.4s;
}

.contact-item:hover {
  transform: translateX(10px);

  border-color: #d4af37;
}

.contact-item h3 {
  color: #ffd76a;

  font-size: 22px;

  margin-bottom: 10px;
}

/* ==========================
        CONTACT FORM
========================== */

.contact-box {
  background: rgba(255, 255, 255, 0.06);

  padding: 45px;

  border-radius: 25px;

  border: 1px solid rgba(255, 255, 255, 0.1);

  backdrop-filter: blur(15px);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.input-group {
  margin-bottom: 20px;
}

.input-group input,
.input-group textarea {
  width: 100%;

  padding: 16px 20px;

  background: rgba(255, 255, 255, 0.08);

  border: none;

  outline: none;

  border-radius: 12px;

  color: white;

  font-family: "Poppins", sans-serif;

  border: 1px solid rgba(255, 255, 255, 0.15);

  transition: 0.3s;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
  color: #aaa;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: #d4af37;

  box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
}

/* Button */

.contact-box button {
  width: 100%;

  padding: 16px;

  border: none;

  border-radius: 50px;

  background: linear-gradient(135deg, #ffd76a, #d4af37);

  color: #111;

  font-weight: 600;

  font-size: 16px;

  cursor: pointer;

  transition: 0.4s;
}

.contact-box button:hover {
  transform: translateY(-5px);

  box-shadow: 0 0 35px rgba(212, 175, 55, 0.5);
}

/* ==========================
        COMMUNITY SECTION
========================== */

.community {
  padding: 100px 8%;

  background: #091126;
}

.community-box {
  max-width: 900px;

  margin: auto;

  text-align: center;

  padding: 55px;

  background: rgba(255, 255, 255, 0.06);

  border-radius: 25px;

  border: 1px solid rgba(255, 255, 255, 0.1);
}

.community-box h2 {
  color: #ffd76a;

  margin-bottom: 25px;
}

.social-links {
  margin-top: 35px;

  display: flex;

  justify-content: center;

  gap: 20px;
}

.social-links a {
  text-decoration: none;

  color: #111;

  background: #ffd76a;

  padding: 12px 30px;

  border-radius: 50px;

  font-weight: 600;

  transition: 0.3s;
}

.social-links a:hover {
  background: white;

  transform: translateY(-5px);
}

/* ==========================
        FOOTER
========================== */

footer {
  background: #030711;

  padding: 40px;

  text-align: center;

  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
  color: #999;
}

/* ==========================
        RESPONSIVE
========================== */

@media (max-width: 992px) {
  .contact-hero h1 {
    font-size: 45px;
  }

  .contact-info {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .contact-hero h1 {
    font-size: 32px;
  }

  .contact-section {
    padding: 70px 5%;
  }

  .contact-box {
    padding: 25px;
  }

  .social-links {
    flex-direction: column;
  }

  .social-links a {
    width: 100%;
  }
}
