/* ==========================================================================
   WD TCM GLOBAL — Design System & Stylesheet
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  --color-text-primary: #ffffff;
  --color-text-secondary: rgba(255, 255, 255, 0.82);
  --color-text-muted: rgba(255, 255, 255, 0.65);
  --color-text-dim: rgba(255, 255, 255, 0.45);
  --color-accent: #6ee7b7;
  --color-accent-glow: rgba(110, 231, 183, 0.25);
  --color-gold: #e2c290;
  
  --font-brand: "Public Sans", sans-serif;
  --font-body: "Public Sans", sans-serif;
  --font-serif: "Public Sans", sans-serif;

  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.16);
  --glass-blur: blur(16px);
}

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

html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  background-color: #070e12;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   Background System
   ========================================================================== */

.background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.background-image {
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  background-image: url('assets/WDTCM-Global-Holding-Site-web.png');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  filter: brightness(0.92) contrast(1.04);
  transition: transform 0.6s cubic-bezier(0.1, 0.8, 0.2, 1);
  will-change: transform;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center 35%,
    rgba(10, 20, 24, 0.15) 0%,
    rgba(6, 15, 18, 0.45) 50%,
    rgba(3, 8, 10, 0.78) 100%
  );
}
.background-container::before{
  content: "";
    background: linear-gradient(180deg, #262024 6.01%, rgba(34, 29, 33, 0.5) 53%, rgba(34, 29, 33, 0) 100%);
  width: 100%;
  height:160px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.vignette-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.6);
}

.mist-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.45;
  mix-blend-mode: screen;
}

/* ==========================================================================
   Top Controls (Sound & Notify)
   ========================================================================== */

.top-controls {
  position: fixed;
  top: 24px;
  right: 28px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeInDown 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.control-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  color: var(--color-text-secondary);
  font-family: var(--font-brand);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.control-btn svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
}

.control-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.control-btn:active {
  transform: translateY(0);
}

.sound-icon-playing {
  display: none;
}

.playing .sound-icon-muted {
  display: none;
}

.playing .sound-icon-playing {
  display: block;
  animation: pulseIcon 2s infinite ease-in-out;
}

.playing {
  background: rgba(110, 231, 183, 0.15);
  border-color: rgba(110, 231, 183, 0.4);
  color: #a7f3d0;
}

/* ==========================================================================
   Page Layout
   ========================================================================== */

.page-wrapper {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 38px 40px 32px 40px;
  max-width: 1440px;
  margin: 0 auto;
}

/* ==========================================================================
   Header / Brand Logo
   ========================================================================== */

.header {
  width: 100%;
  text-align: center;
  padding-top: 8px;
  animation: fadeIn 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.brand-logo {
  font-family: var(--font-brand);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.65), 0 0 35px rgba(255, 255, 255, 0.15);
  display: inline-block;
  user-select: none;
  transition: var(--transition-smooth);
}

.brand-logo:hover {
  letter-spacing: 0.28em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 0 45px rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  text-align: center;
  padding: 40px 20px;
}

.hero-content {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
  will-change: transform;
}

.hero-title {
  font-family: var(--font-brand);
  font-size: 40px;
  font-weight: 600;
  line-height:130%;
  letter-spacing: 1%;
  color: #ECEAE6;
  margin-bottom: 40px;
}

.hero-title .title-line {
  display: block;
      width: 100%;
    max-width: 350px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: #ECEAE6;
  letter-spacing: 0.03em;
  line-height: 160%;
  margin-bottom: 60px;
}

/* Subtle glowing divider */
.divider {
  width: 60px;
  height: 1px;
  background: #ACA7A1;
  margin-bottom: 25px;
  border-radius: 2px;
}

/* Contact Box */
.contact-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-intro {
  font-family: var(--font-body);
  font-size:16px;
  font-weight: 400;
  color: #C4BFBB;
  letter-spacing: 0.02em;
}

.email-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.contact-email {
  font-family: var(--font-brand);
  font-size: 16px;
  font-weight: 600;
  line-height: 160%;
  color: #ffffff;
  letter-spacing:2%;
  text-decoration: none;
  position: relative;
  padding: 4px 6px;
  border-radius: 6px;
  transition: var(--transition-smooth);
}

.contact-email::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 6px;
  right: 6px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  transition: var(--transition-smooth);
}

.contact-email:hover {
  color: #ffffff;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.6), 0 2px 12px rgba(0, 0, 0, 0.8);
  background: rgba(255, 255, 255, 0.08);
}

.contact-email:hover::after {
  background: #ffffff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.copy-email-btn {
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 6px;
  transition: var(--transition-smooth);
}

.copy-email-btn svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
}

.copy-email-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.1);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding-bottom: 6px;
  animation: fadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
      position: fixed;
    bottom: 28px;
    left: 38px;

}

.copyright {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  line-height: 160%;
  color: #ACA7A1;
  user-select: none;
  letter-spacing: 4%;
}

/* ==========================================================================
   Interactive Modal (Stay Updated)
   ========================================================================== */

/* .modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 20px;
} */

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  position: relative;
  background: rgba(14, 26, 31, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 38px 34px;
  max-width: 460px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}

/* .modal-overlay.active .modal-card {
  transform: scale(1) translateY(0);
} */

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.modal-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  background: rgba(110, 231, 183, 0.12);
  border: 1px solid rgba(110, 231, 183, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.modal-icon svg {
  width: 26px;
  height: 26px;
}

.modal-header h3 {
  font-family: var(--font-brand);
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffffff;
}

.modal-header p {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin-bottom: 24px;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.input-group {
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 4px;
  transition: var(--transition-smooth);
}

.input-group:focus-within {
  border-color: rgba(110, 231, 183, 0.6);
  box-shadow: 0 0 16px rgba(110, 231, 183, 0.2);
}

.input-group input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 14px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.input-group input::placeholder {
  color: var(--color-text-dim);
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  color: #070e12;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-family: var(--font-brand);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.submit-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

.submit-btn:hover {
  background: var(--color-accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(110, 231, 183, 0.4);
}

.form-notice {
  font-size: 0.78rem;
  color: var(--color-text-dim);
}

/* ==========================================================================
   Toast Notification
   ========================================================================== */

.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(16, 32, 38, 0.95);
  border: 1px solid rgba(110, 231, 183, 0.4);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 16px rgba(110, 231, 183, 0.2);
  transform: translateY(100px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.toast svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-accent);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   Keyframes & Animations
   ========================================================================== */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseIcon {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.8; }
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */

@media (max-width: 768px) {
  .page-wrapper {
    padding: 32px 20px 20px 20px;
  }
  
  .top-controls {
    top: 16px;
    right: 16px;
    gap: 8px;
  }

  .control-label {
    display: none;
  }

  .control-btn {
    padding: 8px 10px;
    border-radius: 50%;
  }

  .brand-logo {
    font-size: 1.15rem;
    letter-spacing: 0.2em;
    margin-top: 4px;
  }
.brand-logo img{
  width: 100%;
  max-width: 162px;
}
  .hero-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: 0.98rem;
    margin-bottom: 22px;
  }

  .divider {
    margin-bottom: 22px;
  }

  .contact-intro {
    font-size: 14px;
  }

  .contact-email {
    font-size: 14px;
      line-height: 150%;
  }

  .footer {
    justify-content: start;
    text-align: center;
  }
  
  .input-group {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
  }

  .input-group input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
  }

  .submit-btn {
    justify-content: center;
    padding: 12px;
  }
  
.background-image {
  position: absolute;
  background-image: url('assets/WDTCM-Global-Holding-Site-mobile.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}
.footer {
    bottom: 25px;
    left: 20px;

}
}
