/* ============================================================
   Gedia Agency – Coming Soon  |  style.css
   Colors:
     Navy Blue  : #1a2a6c / #071d54
     Gold/Orange: #f5a623 / #f4ae00
     Slate Grey : #7a8ba6
     Light Blue : #dce9f5
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  overflow-x: hidden;
}

body {
  background-color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  color: #071d54;
  position: relative;
}

/* ---------- Decorative Shapes ---------- */

/* Shared base for all deco shapes */
.deco {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Top-right: large slate-grey quarter circle */
.deco--top-right {
  width: 320px;
  height: 320px;
  background-color: #7a8ba6;
  top: -120px;
  right: -120px;
  border-radius: 50%;
  opacity: 0.85;
}

/* Bottom-left: light-blue quarter circle (behind orange) */
.deco--bottom-left-blue {
  width: 260px;
  height: 260px;
  background-color: #dce9f5;
  bottom: -80px;
  left: -60px;
  border-radius: 50%;
  opacity: 0.9;
}

/* Bottom-left: orange full circle (overlapping blue) */
.deco--bottom-left-orange {
  width: 200px;
  height: 200px;
  background-color: #f4ae00;
  bottom: -60px;
  left: -60px;
  border-radius: 50%;
  opacity: 1;
}

/* ---------- Page Wrapper ---------- */
.page-wrapper {
  position: relative;
  z-index: 1;
}

/* ---------- Content Card ---------- */
.content-card {
  max-width: 680px;
  width: 100%;
}

/* ---------- Logo ---------- */
.logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-img {
  width: 250px;
  height: auto;
  filter: drop-shadow(0 2px 6px rgba(7, 29, 84, 0.12));
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

/* ---------- Tagline ---------- */
.tagline {
  font-family: 'Franklin Gothic Book', serif;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  letter-spacing: 0.35em;
  color: #071d54;
  font-weight: 600;
  text-transform: uppercase;
}

/* ---------- Coming Soon Heading ---------- */
.coming-soon {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 700;
  color: #f4ae00;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* ---------- Subscription Form ---------- */
.subscription-form {
  margin: 1.5rem 0;
}

.subscription-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.input-group {
  display: flex;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(7, 29, 84, 0.15);
  transition: box-shadow 0.3s ease;
}

.input-group:focus-within {
  box-shadow: 0 6px 20px rgba(244, 174, 0, 0.25);
}

.subscription-input {
  flex: 1;
  border: none;
  padding: 12px 18px;
  font-size: 0.95rem;
  font-family: 'Montserrat', sans-serif;
  color: #071d54;
  background-color: #ffffff;
  transition: background-color 0.2s ease;
}

.subscription-input::placeholder {
  color: #7a8ba6;
  opacity: 0.7;
}

.subscription-input:focus {
  outline: none;
  background-color: #f9f9f9;
}

.btn-subscribe {
  background-color: #f4ae00;
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-subscribe:hover,
.btn-subscribe:focus {
  background-color: #071d54;
  color: #f4ae00;
  transform: translateX(2px);
  outline: none;
}

.form-feedback {
  font-size: 0.85rem;
  font-weight: 600;
  min-height: 20px;
  text-align: center;
  transition: color 0.3s ease;
}

.form-feedback.success {
  color: #28a745;
}

.form-feedback.error {
  color: #dc3545;
}

/* ---------- Social Icons ---------- */
.social-icons {
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #071d54;
  color: #ffffff;
  font-size: 1.35rem;
  text-decoration: none;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 3px 10px rgba(7, 29, 84, 0.2);
}

.social-link:hover,
.social-link:focus-visible {
  background-color: #f4ae00;
  color: #071d54;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 6px 18px rgba(244, 174, 0, 0.4);
  outline: none;
}

/* ---------- Contact Info ---------- */
.contact-info {
  line-height: 1.9;
}

.contact-link {
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  font-weight: 600;
  color: #f4ae00;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: #071d54;
  text-decoration: underline;
  outline: none;
}

/* ---------- Responsive Tweaks ---------- */

/* Tablets and smaller */
@media (max-width: 768px) {
  .deco--top-right {
    width: 200px;
    height: 200px;
    top: -80px;
    right: -80px;
  }

  .deco--bottom-left-blue {
    width: 180px;
    height: 180px;
    bottom: -60px;
    left: -50px;
  }

  .deco--bottom-left-orange {
    width: 140px;
    height: 140px;
    bottom: -45px;
    left: -45px;
  }

  .logo-img {
    width: 110px;
  }

  .social-link {
    width: 46px;
    height: 46px;
    font-size: 1.15rem;
  }

  .subscription-input {
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .btn-subscribe {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .deco--top-right {
    width: 150px;
    height: 150px;
    top: -60px;
    right: -60px;
  }

  .deco--bottom-left-blue {
    width: 140px;
    height: 140px;
    bottom: -50px;
    left: -40px;
  }

  .deco--bottom-left-orange {
    width: 110px;
    height: 110px;
    bottom: -35px;
    left: -35px;
  }

  .logo-img {
    width: 90px;
  }

  .tagline {
    letter-spacing: 0.2em;
  }

  .social-icons {
    gap: 1rem !important;
  }

  .subscription-input {
    padding: 10px 12px;
    font-size: 0.85rem;
  }

  .btn-subscribe {
    padding: 10px 14px;
    font-size: 0.85rem;
  }

  .form-feedback {
    font-size: 0.75rem;
  }
}
