/* index.css — page-specific tweaks for Home */

/* Slightly taller hero on homepage to emphasize imagery */
/* Removed the .hero height override so the homepage uses the global .hero height from style.css */


.hero-content {
    margin-left: 6%;
    max-width: 980px;
}

.hero-buttons a {
    min-width: 220px;
}

/* small utility */
.section-home-cta {
    text-align: center;
    margin-top: 32px;
}

.banner {
  background: #b6d1e0;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  font-family: Arial, sans-serif;
}

.countdown span {
  font-weight: bold;
  margin-right: 5px;
}

.cta {
  background: white;
  color: #181766;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
}




/* ============================================
   GLOBAL RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-blue: #0066cc;
    --primary-blue-dark: #0052a3;
    --secondary-blue: #004d99;
    --accent-blue: #3399ff;
    --light-blue: #e6f2ff;
    
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-light: #6b7280;
    
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --border-color: #e5e7eb;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    line-height: 1.6;
    background: var(--bg-white);
}


/* ============================================
   PROFESSIONAL DEADLINE BANNER - CENTERED
============================================ */

.deadline-section {
  background: #fcfdfe;
  padding: 60px 20px;
  border-bottom: 1px solid #e5e7eb;
}

.deadline-wrapper {
  max-width: 1100px; /* Reduced from 2550px to keep it readable */
  margin: 0 auto;
}

.deadline-header {
  text-align: center;
  margin-bottom: 40px;
}

.deadline-header h2 {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: #061c31;
  margin-bottom: 12px;
}

.deadline-header p {
  font-size: 1.1rem;
  color: #6b7280;
}

/* Main card - Set to Column to put button below */
.deadline-card {
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  padding: 40px;
  display: flex;
  flex-direction: column; /* Vertical stacking */
  align-items: center;    /* Center everything horizontally */
  gap: 32px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  text-align: center;
}

/* Wrapper for Text and Countdown */
.card-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
}

/* Left content */
.deadline-left .status-badge {
  display: inline-block; /* Fixed typo from 'incline' */
  font-size: 11px;       /* Fixed typo from 'font: size' */
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: #fff4f4;
  color: #991b1b;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
  font-weight: 700;
}

.deadline-left strong {
  display: block;
  font-size: 1.5rem;
  color: #111827;
  margin-bottom: 8px;
}

.deadline-left p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.5;
  margin: 0;
  max-width: 400px; /* Keeps text from getting too wide */
}

/* Countdown box */
.countdown {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f9fafb; /* Slightly lighter gray for sophistication */
  padding: 20px 30px;
  border-radius: 12px;
  border: 1px solid #f3f4f6;
}

.countdown-item {
  text-align: center;
  min-width: 60px;
}

.countdown-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: #111827;
  line-height: 1;
}

.countdown-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9ca3af;
  margin-top: 4px;
}

.countdown-separator {
  font-size: 1.2rem;
  color: #d1d5db;
}

/* CTA Button - Now sits below */
.deadline-cta {
  background: #061c31;
  color: #ffffff;
  padding: 18px 36px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.deadline-cta:hover {
  background: #0b0268;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 900px) {
  .card-content {
    flex-direction: column; /* Stacks text on top of countdown on mobile */
    gap: 24px;
  }
  
  .deadline-card {
    padding: 30px 20px;
  }
}