@font-face {
  font-family: "Commissioner";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("../assets/fonts/commissioner-latin-100-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Commissioner";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("../assets/fonts/commissioner-latin-ext-100-normal.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Commissioner";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("../assets/fonts/commissioner-greek-100-normal.woff2") format("woff2");
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1,
    U+03A3-03FF;
}

@font-face {
  font-family: "Commissioner";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/commissioner-latin-500-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Commissioner";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/commissioner-latin-ext-500-normal.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Commissioner";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/commissioner-greek-500-normal.woff2") format("woff2");
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1,
    U+03A3-03FF;
}

:root {
  --blue: #70d1f4;
  --navy: #0d2140;
  --white: #ffffff;
  --page: #f4f7fa;
  --font: "Commissioner", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  font-family: var(--font);
  background: var(--page);
  color: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--blue);
}

.page {
  min-height: 100dvh;
  display: flex;
  padding: clamp(0.75rem, 2vw, 1.25rem);
}

.frame {
  position: relative;
  isolation: isolate;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.5vh, 1.75rem);
  text-align: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: clamp(1.5rem, 3vw, 2.75rem);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(13, 33, 64, 0.1);
}

.bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(160deg, rgba(8, 28, 48, 0.72) 0%, rgba(8, 28, 48, 0.45) 55%, rgba(8, 28, 48, 0.62) 100%),
    url("../assets/img/hero.jpg") center / cover no-repeat;
  animation: drift 24s ease-in-out infinite alternate;
}

@keyframes drift {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.08);
  }
}

.logo {
  width: clamp(12rem, 32vw, 18rem);
  height: auto;
  animation: fade-up 0.7s ease both;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  animation: fade-up 0.7s ease 0.1s both;
}

.dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(112, 209, 244, 0.65);
  }
  70% {
    box-shadow: 0 0 0 0.55rem rgba(112, 209, 244, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(112, 209, 244, 0);
  }
}

h1 {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(2rem, 5.2vw, 3.25rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.02em;
  animation: fade-up 0.7s ease 0.2s both;
}

.contact {
  margin: 0.35rem 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 0.85rem;
  animation: fade-up 0.7s ease 0.3s both;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  min-width: 12.5rem;
  padding: 0.9rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.contact-item:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(112, 209, 244, 0.55);
}

.contact-label {
  font-size: clamp(0.78rem, 1.2vw, 0.88rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
}

.contact-value {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--white);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bg,
  .dot,
  .logo,
  .badge,
  h1,
  .contact {
    animation: none !important;
  }

  .bg {
    transform: none;
  }

  .logo,
  .badge,
  h1,
  .contact {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 520px) {
  .contact {
    flex-direction: column;
    width: 100%;
    max-width: 20rem;
  }

  .contact-item {
    width: 100%;
    min-width: 0;
  }
}
