* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
[role="switch"]:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid #5960e8;
  outline-offset: 3px;
}
a {
  text-decoration: none;
  color: unset;
  display: inline-block;
}
p {
  color: #ffffffaf;
}
body {
  font-family: Montserrat, sans-serif;
  background: #000;
}
main {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  position: relative;
}
.container {
  width: 90%;
  max-width: 1280px;
  margin: auto;
}
.flex {
  display: flex;
  align-items: center;
}
.f-clmn {
  flex-direction: column;
}
.sb {
  justify-content: space-between;
}
.jc {
  justify-content: center;
}
.ac {
  align-items: center;
}
li {
  list-style: none;
}
span {
  display: inline-block;
}

/*--------------
 FOR ALL SECTION 
 -------------*/

section {
  height: 100vh;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow-y: hidden;
}
.allh2 {
  font-size: clamp(14px, 14px, 16px);
  font-weight: 500;
  margin-bottom: 35px;
  padding: 8px 12px;
  border: 1px solid #ffffff46;
  border-radius: 8px;
  width: fit-content;
}
.allh1 {
  font-size: clamp(24px, 5vw, 50px);
  line-height: clamp(2rem, 8vw, 5vw);
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}
.allp {
  margin-bottom: 50px;
  font-size: clamp(16px, 16px, 16px);
  line-height: clamp(1.6rem, 1.6rem, 1.6rem);
  color: #ffffffaf;
  text-align: center;
}

/*-----
 Header 
 ----*/

header {
  background-color: #000000;
  width: 90%;
  margin: auto;
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  color: #fff;
  height: 3.5rem;
  z-index: 999;
  user-select: none;
  border-radius: 8px;
  box-shadow:
    1px 1px 50px -20px #f780ff88,
    1px 1px 50px -20px rgba(218, 165, 32, 0.553);
}
.IconCol {
  display: none;
}
.logo {
  font-size: clamp(20px, 3vw, 20px);
  font-weight: 600;
}
.nav {
  gap: 15px;
}
.nav li {
  font-size: 14px;
  transition: 0.3s ease;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}
.nav li a{
  padding: 10px 15px;
}
.nav li:hover {
  color: #ffffff;
  background-color: #5960e8;
  box-shadow:
    0px 0px 50px -10px #fff,
    inset 2px 2px 10px -4px #fff;
}
.nav li:active {
  transform: scale(0.9);
}
.ri-menu-4-line,
.ri-close-large-fill {
  display: none;
}
.ri-menu-4-line,
.ri-close-large-fill {
  font-size: 22px;
  color: #fff;
  margin-right: 10px;
}
.navRow {
  display: none;
  line-height: clamp(3rem, 5vw, 5rem);
  margin-top: 1rem;
  text-align: center;
  border-top: 0.1px solid #ffffffaf;
  padding: 20px 0px;
}
header.add {
  padding: 15px 0px;
  height: fit-content;
}
header.add .navRow {
  display: flex !important;
}
.navCol h2 {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 400;
}

/*------------------
 SECTION - 1 CONTACT 
 -----------------*/

.contactSec {
  text-align: center;
  padding-top: 10rem;
  padding-bottom: 50px;
  position: relative;
  overflow: hidden;
  background: #000000;
  height: fit-content;
}
.contact-content {
  position: relative;
  gap: 20px;
}
.contact-content h1 {
  font-size: clamp(35px, 5vw, 70px);
  line-height: clamp(2.6rem, 8vw, 7vw);
  font-weight: 600;
}
.contact-content h2 {
  margin: 0;
}

.form-content {
  width: 60%;
  margin: auto;
  gap: 40px;
  background: linear-gradient(135deg, #d700ff75, #000 20% 80%, #d700ff75);
  padding: 50px;
  border-radius: 8px;
  border: 1px solid #ffffff0e;
}
.Namerow,
.Mailrow,
.Msgrow {
  gap: 30px;
  width: 100%;
}
.Namerow label,
.Mailrow label,
.Msgrow label {
  font-size: 20px;
  font-weight: 600;
}
.Namerow .col,
.Mailrow .col,
.Msgrow .col {
  width: 100%;
  text-align: left;
  align-items: start;
  gap: 15px;
}
.Namerow input,
.Mailrow input,
.Msgrow input {
  width: 100%;
  background: #ffffff33;
  border: 1px solid #ffffff26;
  padding: 15px;
  font-size: 16px;
  border-radius: 8px;
  color: #fff;
}
.Namerow input::placeholder,
.Mailrow input::placeholder,
.Msgrow input::placeholder {
  color: #ffffff98;
  font-weight: 300;
  font-size: 16px;
}
textarea {
  width: 100%;
  height: 8rem;
  background: #ffffff33;
  border: 1px solid #ffffff26;
  font-size: 16px;
  padding: 15px;
  border-radius: 8px;
  color: #fff;
}
input.error,
textarea.error {
  border: 1px solid red;
} 
label.error {
  color: red;
}
#submit {
  background: #5960e8;
  color: #fff;
  transition: 0.3s ease;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}
#submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
#submit:active {
  transform: scale(0.9);
}

/*-----
 FOOTER
 -----*/

footer {
  padding-top: 50px;
  user-select: none;
}
.footer-main {
  padding: 40px 0px;
}
.imgcol {
  align-items: baseline;
  gap: 30px;
  width: 50%;
}
.imgcol img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-right: 10px;
  border-radius: 8px;
}
.imgcol .logo {
  color: #fff;
  font-size: clamp(20px, 3vh, 30px);
}
.signrow {
  margin-top: 20px;
  padding: 15px 0px;
  border-top: 1px solid #ffffff38;
}
.Reservecol p {
  font-size: 14px;
}
.linkscol {
  gap: 20px;
  width: 100%;
  align-items: center;
  justify-content: right;
}
.main-links {
  width: 100%;
  justify-content: right;
  gap: 30px;
}
.main-links h2 {
  color: #fff;
  width: 100%;
  text-align: right;
}
.linkscol i {
  font-size: 25px;
  color: #fff;
}
.signatureCol a {
  color: #cacdff;
  text-decoration: underline;
  font-weight: 500;
}

@media (max-width: 768px) {
  /*------
  Header 
  ------*/
  .IconCol {
    display: block;
  }
  .ri-menu-4-line {
    display: block;
  }
  .nav {
    display: none;
  }
  .login {
    display: none;
  }
  .navRow {
    display: none;
  }
  .cursor {
    display: none;
  }
  .form-content {
    width: 100%;
    padding: 40px 15px;
    gap: 20px;
  }
  .Namerow,
  .Mailrow,
  .Msgrow {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .allp {
    margin-bottom: 70px;
    font-size: clamp(16px, 16px, 16px);
    line-height: clamp(1.6rem, 1.6rem, 1.6rem);
    color: #ffffffaf;
    text-align: center;
  }
  .allh2 {
    font-size: clamp(14px, 14px, 16px);
    font-weight: 500;
    margin-bottom: 25px;
    padding: 8px 12px;
    border: 1px solid #ffffff46;
    border-radius: 8px;
    width: fit-content;
  }

  /*-----
  FOOTER
  ------*/

  .footer-main {
    flex-direction: column;
    gap: 30px;
    padding: 30px 0px;
  }
  .imgcol {
    align-items: baseline;
    gap: 20px;
    width: 100%;
  }
  .main-links {
    width: 100%;
    justify-content: left;
    gap: 20px;
  }
  .main-links h2 {
    color: #fff;
    width: 100%;
    text-align: left;
  }
  .linkscol {
    gap: 20px;
    width: 100%;
    align-items: center;
    justify-content: left;
  }
  .footer-main {
    padding: 20px 0px;
  }
}

@media (min-width: 767px) and (max-width: 1024px) {
  /*------
    Header 
    ------*/
  .IconCol {
    display: block;
  }
  .ri-menu-4-line {
    display: block;
  }
  .nav {
    display: none;
  }
  .login {
    display: none;
  }
  .navRow {
    display: none;
  }
  .cursor {
    display: none;
  }

  .form-content {
    width: 80%;
  }

  /*-----
  FOOTER
  ------*/

  .inputCol label {
    font-size: 25px;
    font-weight: 600;
    color: #fff;
  }
  .footer-main {
    padding: 20px 0px;
  }
}
