/* Mobile-First Responsive Design */

/* Extra Small Devices (phones, 320px and up) */
@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }
  
  .header {
    padding: 1rem 0;
  }
  
  .main-title {
    font-size: 1.6rem;
    line-height: 1.2;
  }
  
  .subtitle {
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }
  
  .main-content {
    gap: 1.5rem;
    padding: 0.5rem 0;
  }
  
  .status-indicator {
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    border-radius: 25px;
  }
  
  .status-text {
    font-size: 0.9rem;
  }
  
  .logo-section {
    padding: 1rem 0;
  }
  
  .footer {
    padding: 1rem 0;
  }
  
  .footer p {
    font-size: 0.8rem;
  }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 481px) and (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
  
  .main-title {
    font-size: 2rem;
  }
  
  .subtitle {
    font-size: 1rem;
  }
  
  .status-indicator {
    padding: 0.75rem 1.5rem;
  }
  
  .status-text {
    font-size: 1rem;
  }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 577px) and (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
  
  .header {
    padding: 1.5rem 0;
  }
  
  .main-title {
    font-size: 2.4rem;
  }
  
  .subtitle {
    font-size: 1.1rem;
  }
  
  .main-content {
    gap: 2rem;
    padding: 1rem 0;
  }
  
  .status-indicator {
    padding: 1rem 2rem;
  }
  
  .status-text {
    font-size: 1.1rem;
  }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 769px) and (max-width: 992px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .main-title {
    font-size: 3.2rem;
  }
  
  .subtitle {
    font-size: 1.25rem;
  }
  
  .status-text {
    font-size: 1.2rem;
  }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 993px) {
  .container {
    padding: 0 2rem;
  }
  
  .main-title {
    font-size: 4rem;
  }
  
  .subtitle {
    font-size: 1.5rem;
  }
  
  .status-text {
    font-size: 1.25rem;
  }
}

/* Landscape Orientation Adjustments */
@media (orientation: landscape) and (max-height: 500px) {
  .header {
    padding: 0.5rem 0;
  }
  
  .main-title {
    font-size: 2rem;
    margin-bottom: 0.25rem;
  }
  
  .subtitle {
    font-size: 0.9rem;
    margin-top: 0.25rem;
  }
  
  .main-content {
    gap: 1rem;
    padding: 0.5rem 0;
  }
  
  .status-indicator {
    padding: 0.5rem 1rem;
  }
  
  .logo-section {
    padding: 0.5rem 0;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .main-title {
    text-rendering: optimizeLegibility;
  }
  
  .status-dot {
    box-shadow: 0 0 10px rgba(251, 198, 56, 0.5);
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  :root {
    --text-primary: #ffffff;
    --text-secondary: #b4b4b4;
    --text-muted: #888888;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .background-animation {
    animation: none;
  }
  
  .status-dot {
    animation: none;
  }
  
  .biglogo img {
    animation: none;
  }
  
  * {
    transition: none !important;
  }
}

/* Print Styles */
@media print {
  .background-animation {
    display: none;
  }
  
  .cta {
    display: none;
  }
  
  .biglogo {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .main-title {
    color: black;
    -webkit-text-fill-color: black;
  }
}
