/* --- RESET & BASE --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: rgb(0, 0, 0);
}

.Italianno {
  font-family: "Italianno", cursive;
}

.CormorantUP {
  font-family: "Cormorant Upright", serif;
}

/* -------------------------
   NAVIGATION + HERO
-------------------------- */

#navigation {
  background-color: rgba(255, 174, 211, 0.5);
  text-align: center;
  padding: 0;
}

#navigation h1 {
  font-size: 50px;
  color: #ffffff;
  margin: 0;
  padding: 5px 0;
}


.navbar ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 15px 0;
  margin: 0;
  list-style: none;
}

.navbar a {
  font-size: 18px;
  color: white;
  padding: 8px 15px;
}

body {
  font-family: 'Cormorant Upright', serif;
  background-image: url("Assets/Reach To us.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: rgb(249, 234, 255);
  min-height: 100vh;
}


/* --- MAIN LAYOUT --- */
#inlineFlex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  padding: 60px 40px;
  flex-wrap: wrap;
}

/* LEFT SECTION (Title + Socials) */
#block {
  text-align: center;
}

#block h1 {
  font-size: 70px;
  margin-bottom: 0px;
}

#block a img {
  width: 35px;
  gap: 50px;
  transition: transform 0.3s ease;
}

#block a img:hover {
  transform: scale(1.15);
}

/* --- FORM BOX --- */
#box {
  border: 1px solid white;
  border-radius: 15px;
  padding: 30px;
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.25);
  width: 320px;
}

/* --- FORM STYLING --- */
form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.inputfield {
  width: 100%;
  padding: 10px;
  border: 1px solid white;
  border-radius: 8px;
  background: transparent;
  color: rgb(255, 255, 255);
  font-family: "Cormorant Upright";
  font-size: 15px;
}

.inputfield::placeholder {
  color: #ffffff;
}

#msgfield {
  width: 100%;
  height: 100px;
  resize: none;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  border: 1px solid white;
  padding: 10px;
  color: white;
}

#submit {
  background-color: #ffafd2;
  color: black;
  border: none;
  border-radius: 8px;
  padding: 10px 0;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

#submit:hover {
  background-color: #fff;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 900px) {
  #inlineFlex {
    flex-direction: column;
    gap: 40px;
  }

  #block h1 {
    font-size: 45px;
  }

  #box {
    width: 80%;
  }
}
.CormorantUp{
  font-family: "Cormorant Upright", serif;
  font-weight: 400;
  font-style: normal;
}
.Italianno{
    font-family: "Italianno", cursive;
    font-weight: 400;
    font-style: normal;
}