/* FONTS */
@font-face {
  font-family: 'EurostileBold';
  src: url('assets/fonts/EurostileExtended-Bold.woff2') format('woff2');
}
@font-face {
  font-family: 'EurostileRegular';
  src: url('assets/fonts/EurostileExtended-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'LatoMedium';
  src: url('assets/fonts/Lato-Medium.woff2') format('woff2');
}

/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   HERO SECTION
========================= */
.hero {
  min-height: 100vh;
  background: url('assets/bg.jpg') center/cover no-repeat;
  position: relative;
  color: #ffffff;
}

/* =========================
   HEADER
========================= */
.header {
  text-align: center;
  padding-top: 30px;
}

.logo {
  width: 200px;
}

/* =========================
   CONTENT (LOWER POSITION)
========================= */
.content {
  max-width: 920px;
  margin: auto;
  padding: 200px 20px 80px;
  text-align: center;
}

/* =========================
   HEADINGS
========================= */
.small-title {
  font-family: 'EuroRegular';
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 5px;
}



h1 {
  font-family: 'EurostileBold';
  font-size: clamp(30px, 5vw, 30px);
  margin-bottom: 40px;
}


h2 {
  font-family: 'EurostileRegular';
  color: #fff;
  margin-bottom: 30px;
}
/* =========================
   SUCCESS MESSAGE
========================= */
.success-message {
  display: none;
  margin-bottom: 25px;
  padding: 15px;
  border: 1px solid #28a745;
  background: rgba(40, 167, 69, 0.15);
  font-family: 'LatoMedium';
  font-size: 14px;
}

/* =========================
   FORM
========================= */
.form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}

/* TWO FIELDS PER ROW (DESKTOP/TABLET) */
.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* LAST FIELD SAME WIDTH */
.row.center {
  grid-template-columns: 1fr;
}

/* INPUTS & SELECT */
input,
select {
  width: 100%;
  padding: 15px;
  background: transparent;
  border: 1px solid #aaaaaa;
  color: #ffffff;
  font-family: 'LatoMedium';
  font-size: 15px;
  outline: none;
  border-radius: 8px;   /* rounded rectangle */
}

/* PLACEHOLDER (LABEL INSIDE FIELD) */
input::placeholder {
  color: #aaaaaa;
}

/* SELECT PLACEHOLDER COLOR */
select {
  color: #aaaaaa;
}

/* SELECT OPTIONS FIX */
select option {
  color: #333333;
  background: #eeeeee;
}

/* =========================
   REGISTER BUTTON
========================= */
.register-btn {
  margin: 30px auto 0;
  width: 50%;
  padding: 15px 0;
  background: #f7941d;
  border: none;
  color: #ffffff;
  font-family: 'EuroBold';
  font-size: 15px;
  letter-spacing: 2px;
  cursor: pointer;
  display: block;
  transition: all 0.3s ease;
  border-radius: 10px;  /* rounded button */
}

.register-btn:hover {
  background: #d97c0f;
}

/* =========================
   FOOTER
========================= */
.footer {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
  font-family: 'LatoMedium';
  font-size: 12px;
  opacity: 0.85;
}

.footer {
  font-family: 'LatoMedium', sans-serif;
  font-size: 11px;
  color: #ffffff;
  text-align: center;
  padding: 20px 10px;
	display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}


.social-link {
  margin-left: 0px;
  display: inline-flex;
  vertical-align: middle;
}

.insta-icon {
  width: 16px;
  height: 16px;
  fill: #f7941d; /* ORANGE ICON */
  transition: opacity 0.3s ease;
}

.social-link:hover .insta-icon {
  opacity: 0.7;
}

/* =========================
   TABLET RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .content {
    padding-top: 160px;
  }

  .register-btn {
    width: 70%;
  }
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {

  .content {
    padding-top: 120px;
  }

  .row {
    grid-template-columns: 1fr;
  }

  input,
  select {
    padding: 16px;
    font-size: 16px; /* better touch UX */
  }

  .register-btn {
    width: 100%;
    padding: 16px 0;
  }
}