/* =============================
              HEADER
============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Helvetica, Arial, sans-serif;
}

.header {
  display: flex;
  align-items: center;

  width: 100%;
  height: clamp(70px, 5vw, 100px);

  padding: 0 clamp(25px, 3vw, 60px);

  border-bottom: 1px solid #d8d8d8;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  width: 64px;
  height: auto;
  display: block;
}

/* Push Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 24px;

  margin-left: auto;
}

.nav a {
  position: relative;

  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1;

  color: #000;
  text-decoration: none;
}
.nav a:hover {
  opacity: 0.45;
}
.nav span {
  color: #aaa;
}

.nav a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -6px;

  width: 0;
  height: 1px;

  background-color: #111;

  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav-divider {
  width: 1px;
  height: 13px;
  background-color: #c8c8c8;

  margin: 0 2px;
}
/* =========================
   DROPDOWN
========================= */

.dropdown {
  position: relative;
}

/* Dropdown button */

.dropdown-btn {
  background: none;
  border: none;
  padding: 0;

  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1;
  color: #111;

  cursor: pointer;
}

/* Arrow */

.arrow {
  display: inline-block;

  margin-left: 5px;

  transition: transform 0.3s ease;
}

/* Dropdown menu */

.dropdown-menu {
  position: absolute;

  top: 30px;
  left: 0;

  min-width: 180px;

  background-color: white;

  padding: 15px 0;

  opacity: 0;
  visibility: hidden;

  transform: translateY(-5px);

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

/* Links */

.dropdown-menu a {
  display: block;

  padding: 8px 15px;

  font-size: 11px;
  letter-spacing: 1px;

  white-space: nowrap;
}

/* OPEN */

.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;

  transform: translateY(0);
}

/* Rotate arrow */

.dropdown.active .arrow {
  transform: rotate(180deg);
}
/* =============================
              FOOTER
============================== */
.footer {
  margin: 60px 3% 0;
  padding: 20px 0;

  border-top: 1px solid #d5d5d5;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}

/* Footer signature */

.footer-signature {
  display: block;

  width: 120px;
  height: auto;

  margin: 0 auto 12px;

  opacity: 0.75;
}

/* Footer text */

.footer p {
  margin: 4px 0;

  font-size: 10px;
  font-weight: 400;

  letter-spacing: 1px;

  color: #777;

  text-align: center;
}

/* Signature  */

.signature-figure {
  width: 400px;
  max-width: 80%;
  height: auto;
  display: block;
  margin: 50px auto 0;
  opacity: 0.8;
}

/* Contact me - Social media Icon */
.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #111;
}

.social-links svg {
  width: 24px;
  height: 24px;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.social-links a:hover svg {
  opacity: 0.45;
  transform: translateY(-1px);
}

.footer-signature {
  width: 140px;
  height: auto;
  opacity: 0.55;
  display: block;
  margin: 0 auto 12px;
}
/* =============================
          GENERAL PAGES
============================== */
/* =============================
          WELCOME PAGES
============================== */
/* ============= LAUNCH TREATS*/
/* ====== COUNTDOWN ============ */
.countdown-section {
  text-align: center;

  padding: 80px 20px;
}

.countdown-title {
  font-size: 20px;
  text-align: center;
  letter-spacing: 3px;

  margin-bottom: 25px;
}

/* Countdown layout */

.countdown {
  display: flex;

  justify-content: center;
  align-items: center;

  gap: 40px;
}

/* Individual number */

.countdown-item {
  min-width: 70px;
}

.countdown-item span {
  display: block;

  font-size: 90px;
  font-weight: 300;

  letter-spacing: 2px;
}

/* DAYS / HOURS / MIN / SEC */

.countdown-item p {
  margin-top: 8px;

  font-size: 20px;

  letter-spacing: 2px;

  color: #777;
}

/* ====== SIGNATURE ============ */

.signature-figure {
  width: 400px;
  max-width: 80%;
  height: auto;
  display: block;
  margin: 50px auto 0;
  opacity: 0.8;
}
/* =============================
          HIGHLIGHTS PAGE
============================== */
/* =============================
              ABOUT ME
============================== */
/* =============================
              HEADER
============================== */
