/* Global */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #111;
  color: #f5f5f5;
}

/* Font */
.sofia-regular {
    font-family: "Sofia", cursive;
    font-weight: 400;
    font-style: normal;
  }

  .lilita-one-regular {
    font-family: "Lilita One", sans-serif;
    font-weight: 400;
    font-style: normal;
  }  

 .big-shoulders {
    font-family: 'Big Shoulders';
    font-weight: 400;
 } 

  .big-shoulders-stencil {
    font-family: 'Big Shoulders Stencil';
    font-weight: 900;
    font-size: 18px;
 } 
  
.white-txt{
    color: white;
}

.txt-glow-white{
    text-shadow:1px 1px 10px #fff, 1px 1px 10px #ccc;
}

/* end of of font class */


/* Header */
header {
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid #d4af37;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.header-label strong {
  font-size: 1.5rem;
  color: #d4af37; /* gold */
}

.header-right {
  display: flex;
  gap: 20px;
}

.btn-header {
  padding: 10px 18px;
  color: #f5f5f5;
  font-weight: 700;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #d4af37; /* gold line hover */
  transition: width 0.3s ease;
}

.btn-header:hover::after {
  width: 100%;
}

.btn-header:hover {
  color: #d4af37; /* gold text hoover */
}

.hamburder{
  width: 20px;
  height: 20px;
  display: none;
}

.hamburder-svg{
    width: 20px;
  height: 20px;
  display: none;
}

.header-label{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.header-right {
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.header-right.is-hidden {
    opacity: 0;
    visibility: hidden;
    display: none;
}


/* Main Section */
.main {
  display: flex;
  height: calc(100vh - 70px);
}

.main-tab {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.main-left {
    background: linear-gradient(135deg, #1a1a1a, #2b2b2b);
    color: #d4af37;
}

.main-left:hover{
       box-shadow: inset 0 0 40px rgba(212, 175, 55, 0.219);
}

.main-right {
   /* background: linear-gradient(135deg, #8b0000, #4b0000); */
 /* background: linear-gradient(135deg, #a52a2a, #660000); */
background: linear-gradient(135deg, #b22222, #8b0000, #5c0000);
/* background: linear-gradient(135deg, #b22222, #8b0000, #5c0000),
            radial-gradient(circle at top left, rgba(255,255,255,0.05), transparent 70%);
background-blend-mode: overlay; */
    color: #fff;
}

.main-right:hover{
     box-shadow: inset 0 0 40px rgba(255,255,255,0.2);
}


.form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
}

label {
  margin-bottom: 20px;
}

.required-txt{
  font-size: 18px;
}

input {
  width: 400px;
  height: 35px;
  border-radius: 7px;
  border: 1px solid #d4af37;
}

.input-left:hover{
 box-shadow: 0 0 10px #d4af37;
}

textarea {
  width: 400px;
  height: 200px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.btn-main-left {
  width: 400px;
  height: 50px;
  color: #2b2b2b;
  background: linear-gradient(135deg, #d4af37, #b8860b); 
  font-family: 'Big Shoulders', sans-serif;
  font-weight: 900;
  font-size: 24px;
  border: 2px solid #cc9e09;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-main-left:hover {
  color: #fff;
  background: linear-gradient(135deg, #8b0000, #5c0000); 
  border: 2px solid #4b0000;
  box-shadow: 0 8px 18px rgba(139, 0, 0, 0.6);
  transform: scale(1.05);
}

/* Right */

.right-tab-group {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-bottom: 40px;
}

h1 {
    position: relative;
    display: inline-block;
    font-size: 32px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

h1:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #cc9e09, #d4af37);
    border-radius: 2px;
}

.extlinks {
    height: 50px;
    width: 50px;
    padding: 8px;
    background-color: white;
    border: 2px solid #d4af37; 
    border-radius: 12px; 
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.extlinks:hover {
    background-color: #fff8dc; 
    transform: scale(1.15);
    border-color: #b8860b; 
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.6);
}

/* Responsive */

@media (max-width: 900px) {
  h1{
    font-size:  24px;
  }
  p{
    font-size: 18px;
  }

  input{
    width: 350px;
  }
  textarea{
    width: 350px;
  }

  .btn-main-left{
    width: 350px;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  .header-right {
    flex-direction: column;
    gap: 10px;
  }

  .hamburder{
  width: 20px;
  height: 20px;
  display: block;
}

.hamburder-svg{
    width: 20px;
  height: 20px;
  display: block;
}

  .main {
    flex-direction: column;
    height: auto;
  }
  .main-left {
    min-height: 900px;
  }
  .main-right{
    min-height: 700px;
  }
}

@media (max-width: 480px){
 .big-shoulders-stencil{
  font-size: 20px !important;
 }
}

@media (max-width: 400px){
  label{
    font-size: 17px;
  }
  input{
    width: 320px;
  }
  textarea{
    width: 320px;
  }

  .btn-main-left{
    width: 320px;
  }
}

@media (max-width: 380px){
  label{
    font-size: 17px;
  }
  input{
    width: 280px;
  }
  textarea{
    width: 280px;
  }

  .btn-main-left{
    width: 280px;
  }
}

@media (max-width: 340px){
  label{
    font-size: 16px;
  }
  input{
    width: 250px;
  }
  textarea{
    width: 250px;
  }

  .btn-main-left{
    width: 250px;
  }
}


@media (max-width:400px) {
  .big-shoulders-stencil{
    font-size: 1rem !important;
    margin-bottom: 10px;
  }
  header{
    padding: 15px 30px;
  }
}

/* END Responsive */