/*
Theme Name: Cards Coming Soon
Theme URI: https://cards-personalcare.com
Author: Qlegy
Author URI: https://qlegy.com
Description: A coming soon landing page for Cards Personal Care brand — Care with Joy.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cards-coming-soon
*/

/* ===== CSS RESET & VARIABLES ===== */
:root {
  --blue: #034089;
  --blue-dark: #022a5c;
  --red: #fc384b;
  --gold: #f2b548;
  --light-blue: #aed9ff;
  --black: #000000;
  --white: #ffffff;
  --off-white: #f8faff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--blue-dark);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== BACKGROUND & ATMOSPHERE ===== */
.page-wrapper {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(3, 64, 137, 0.95) 0%, rgba(2, 42, 92, 1) 100%);
}

/* Background is handled by .page-wrapper gradient only */

/* Clean background - gradient only */

/* Top decorative bar */
.top-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
  z-index: 10;
}

/* ===== MAIN CONTENT ===== */
.content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  width: 100%;
  animation: fadeInUp 1s ease-out;
}

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

/* ===== LOGO ===== */
.logo-container {
  margin-bottom: 12px;
}

.logo-container img {
  width: 320px;
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
  animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== TAGLINE ===== */
.tagline {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 36px;
  position: relative;
}

.tagline::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--red);
  margin: 16px auto 0;
  border-radius: 1px;
}

/* ===== COMING SOON HEADING ===== */
.coming-soon-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 12vw, 96px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.coming-soon-title span {
  color: var(--red);
}

/* ===== DESCRIPTION ===== */
.description {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 44px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== COUNTDOWN ===== */
.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 44px;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 18px 12px;
  min-width: 80px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.countdown-item:hover {
  transform: translateY(-4px);
  border-color: rgba(252, 56, 75, 0.3);
}

.countdown-number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
}

.countdown-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 8px;
  display: block;
}

/* ===== NOTIFY FORM ===== */
.notify-form {
  display: flex;
  gap: 0;
  max-width: 440px;
  margin: 0 auto 50px;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition: border-color 0.3s ease;
}

.notify-form:focus-within {
  border-color: rgba(252, 56, 75, 0.5);
}

.notify-form input[type="email"] {
  flex: 1;
  padding: 16px 24px;
  border: none;
  background: transparent;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
}

.notify-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.notify-form button {
  padding: 16px 28px;
  background: var(--red);
  color: var(--white);
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.notify-form button:hover {
  background: #e0293b;
}

/* ===== CONTACT INFO ===== */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s ease;
}

a.contact-item:hover {
  color: var(--light-blue);
}

.contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.6;
}

/* ===== SOCIAL LINKS ===== */
.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-3px);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

/* ===== BOTTOM DECORATIVE LINE ===== */
.suit-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 0;
}

.suit-strip::before,
.suit-strip::after {
  content: '';
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.suit-strip-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

/* ===== FOOTER ===== */
.footer-text {
  margin-top: 16px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 1px;
}

/* No decorative corner elements */

/* ===== SUCCESS MESSAGE ===== */
.notify-success {
  display: none;
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 50px;
  animation: fadeInUp 0.5s ease-out;
}

.notify-success.show {
  display: block;
}

/* ===== WPFORMS OVERRIDES ===== */
.wpforms-wrapper {
  max-width: 440px;
  margin: 0 auto 50px;
}

.wpforms-wrapper .wpforms-container {
  margin: 0 !important;
  padding: 0 !important;
}

.wpforms-wrapper .wpforms-form {
  display: flex !important;
  gap: 0 !important;
  border-radius: 50px !important;
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(10px) !important;
  transition: border-color 0.3s ease !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
}

.wpforms-wrapper .wpforms-form:focus-within {
  border-color: rgba(252, 56, 75, 0.5) !important;
}

.wpforms-wrapper .wpforms-field {
  flex: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.wpforms-wrapper .wpforms-field-label {
  display: none !important;
}

.wpforms-wrapper .wpforms-field-sublabel-after .wpforms-field-sublabel {
  display: none !important;
}

.wpforms-wrapper .wpforms-field input[type="email"],
.wpforms-wrapper .wpforms-field input[type="text"] {
  padding: 16px 24px !important;
  border: none !important;
  background: transparent !important;
  color: var(--white) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  outline: none !important;
  box-shadow: none !important;
  height: auto !important;
  border-radius: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

.wpforms-wrapper .wpforms-field input::placeholder {
  color: rgba(255, 255, 255, 0.35) !important;
}

.wpforms-wrapper .wpforms-submit-container {
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  flex-shrink: 0 !important;
}

.wpforms-wrapper .wpforms-submit-container button,
.wpforms-wrapper .wpforms-submit-container .wpforms-submit {
  padding: 16px 28px !important;
  background: var(--red) !important;
  color: var(--white) !important;
  border: none !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  cursor: pointer !important;
  transition: background 0.3s ease !important;
  white-space: nowrap !important;
  border-radius: 0 !important;
  height: 100% !important;
  line-height: 1 !important;
}

.wpforms-wrapper .wpforms-submit-container button:hover,
.wpforms-wrapper .wpforms-submit-container .wpforms-submit:hover {
  background: #e0293b !important;
}

/* Hide WPForms extras */
.wpforms-wrapper .wpforms-field-description,
.wpforms-wrapper .wpforms-field-medium,
.wpforms-wrapper .wpforms-recaptcha-container {
  margin: 0 !important;
}

/* Confirmation / success message */
.wpforms-wrapper .wpforms-confirmation-container-full {
  background: transparent !important;
  border: none !important;
  color: var(--gold) !important;
  font-size: 14px !important;
  padding: 0 !important;
  text-align: center !important;
}

/* Error styling */
.wpforms-wrapper .wpforms-error,
.wpforms-wrapper label.wpforms-error {
  color: var(--red) !important;
  font-size: 12px !important;
  margin-top: 4px !important;
  padding-left: 24px !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .page-wrapper {
    padding: 30px 20px;
  }

  .logo-container img {
    width: 260px;
  }

  .tagline {
    font-size: 14px;
    letter-spacing: 2px;
  }

  .countdown {
    gap: 12px;
  }

  .countdown-item {
    min-width: 65px;
    padding: 14px 8px;
  }

  .countdown-number {
    font-size: 28px;
  }

  .notify-form {
    flex-direction: column;
    border-radius: 14px;
  }

  .notify-form input[type="email"] {
    text-align: center;
    padding: 16px;
  }

  .notify-form button {
    border-radius: 0 0 13px 13px;
  }

  .wpforms-wrapper .wpforms-form {
    flex-direction: column !important;
    border-radius: 14px !important;
  }

  .wpforms-wrapper .wpforms-field input[type="email"],
  .wpforms-wrapper .wpforms-field input[type="text"] {
    text-align: center !important;
    padding: 16px !important;
  }

  .wpforms-wrapper .wpforms-submit-container button,
  .wpforms-wrapper .wpforms-submit-container .wpforms-submit {
    width: 100% !important;
    border-radius: 0 0 13px 13px !important;
  }

  .contact-section {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
}
