:root {
  --bg-color: #0D98BA;
  --text-color: #075264;
  --text-color-placeholder: #FFFFFF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Base */
body {
  background-color: var(--bg-color);
  font-family: 'Orbitron', sans-serif;
}

/* =========================
   HERO SECTION
========================= */

.hero {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Brand Title */
h1 {
  font-size: clamp(2.5rem, 10vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 0.14em;

  color: var(--text-color);

    text-shadow:
    0.5px 0.5px 0 rgba(255,255,255,0.35),
   -0.5px -0.5px 0 rgba(0,0,0,0.65);
}

/* Tagline */
.container p {
  color: #FFF;
  font-size: clamp(0.85rem, 3.2vw, 1.05rem);
  margin-top: 1.2rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 900;
  position: relative;
  display: inline-block;
  padding-top: 0.8rem;
  opacity:0.65;
}

/* Divider above tagline */
.container p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  width: 60%;
  height: 1px;
  background: var(--text-color);
}

.cta-button {
  margin-top: 2rem;
  padding: 0.8rem 1.6rem;
  border: 1px solid var(--text-color);
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.2s ease;
}

.cta-button:active {
  opacity: 0.8;
}

@media (hover: hover) and (pointer: fine) {
  .cta-button:hover {
    background: var(--text-color);
    color: var(--bg-color);
  }
}

/* =========================
   CONTACT SECTION
========================= */

.contact {
  min-height: 100vh;
  width: 100%;
  padding: 4rem 1.5rem;
  display: flex;
  justify-content: center;
}

.contact-form {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* Title */
.contact-title {
  color: var(--text-color);
  font-size: clamp(0.95rem, 3.5vw, 0.95rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.contact-title::before,
.contact-title::after  {
  content: "\25A0";
  color: red;
  opacity: 75%;
  text-shadow: 0.75px 0.75px 0.75px rgba(255,255,255,0.5),
              -0.75px -0.75px 0.75px rgba(0,0,0,0.5);
}
/* Red square before */
.contact-title::before {
  margin-right: 0.6rem;
}

/* Red square after */
.contact-title::after {
  margin-left: 0.6rem;
}

/* Subtitle */
.contact-subtitle {
color: var(--text-color-placeholder);
font-size: 0.8rem;
opacity: 0.75;
margin-top: 0.8rem;
letter-spacing: 0.15em;
position: relative;
padding-top: 0.8rem;
text-align: center;
}

/* Divider (same style as hero) */
.contact-subtitle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  width: 60%;
  height: 1px;
  background: var(--text-color);
  opacity: 0.9;
}
/* Inputs */
.contact-form input,
.contact-form textarea {
  background: transparent;
  border: 1px solid var(--text-color);
  padding: 0.9rem 1rem;
  color: var(--text-color-placeholder);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  outline: none;
  opacity:0.75;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-color);
  opacity: 0.85;
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
}

/* Focus */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ffffff;
}

/* Button */
.contact-form button {
  margin-top: 2rem;
  padding: 0.8rem 1.6rem;
  border: 1px solid var(--text-color);
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.2s ease;
  background: transparent;
  font-family: 'Orbitron', sans-serif;
}

.contact-form button:active {
  opacity: 0.8;
}

@media (hover: hover) and (pointer: fine) {
  .contact-form button:hover {
    background: var(--text-color);
    color: var(--bg-color);
  }
}

/* Red I */

.i-special {
  position: relative;
  display: inline-block;
}

.i-dot {
  position: absolute;
  left: 50%;
  top: 1.05em;
  color: red;
  opacity: 0.75;
  line-height: 1;
  transform: translate(-50%, -72%);
  font-size: 0.32em;
}

@media (max-width: 480px) {
  .i-dot {
    font-size: 0.20em;
    transform: translate(-50%, -75%);
  }
}

@media (max-height: 450px) and (orientation: landscape) {
  h1 {
    font-size: clamp(1.8rem, 6vw, 3rem);
  }
  .i-dot {
    font-size: 0.18em;
    transform: translate(-50%, -78%);
  }
}
