/* Custom Stylesheet for Blazing Solutions
  Color Palette:
  - Primary Blue: #2563EB
  - Deep Space (BG): #111827
  - Card BG: #1F2937
  - Borders/Secondary CTA: #374151
  - Body Text: #D1D5DB
  - White: #FFFFFF
  - Hover Blue: #3B82F6
  - Hover Gray: #4B5563
*/

/* --- General Body and Layout --- */
body {
  font-family: Helvetica, Arial, sans-serif; /* Using Helvetica with fallbacks */
  background-color: #111827; /* Deep Space */
  color: #D1D5DB; /* Body Text */
  
  /* Flexbox to center the content card */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  padding: 1.5rem; /* 24px */
}

/* --- Content Card --- */
.content-card {
  background-color: rgba(31, 41, 55, 0.6); /* Card BG with transparency */
  backdrop-filter: blur(4px);
  border: 1px solid #374151; /* Borders */
  border-radius: 1rem; /* 16px */
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 2rem; /* 32px */
  max-width: 42rem; /* 672px */
  width: 100%;
  text-align: center;
}

/* --- Header and Logo --- */
header {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem; /* 32px */
}

.logo {
  width: 100%;
  max-width: 20rem; /* 320px */
}

/* --- Main Content --- */
main p {
  font-size: 1.125rem; /* 18px */
  line-height: 1.625;
}

/* --- Footer and Buttons --- */
footer {
  margin-top: 2.5rem; /* 40px */
}

.button-container {
  display: flex;
  flex-direction: column; /* Stack buttons vertically on mobile */
  align-items: center;
  justify-content: center;
  gap: 1rem; /* 16px */
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem; /* 12px */
  font-weight: 600; /* semibold */
  color: #FFFFFF; /* White */
  padding: 0.75rem 1.5rem; /* 12px 24px */
  border-radius: 0.5rem; /* 8px */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
  width: 100%; /* Full width on mobile */
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: scale(1.05);
}

/* Accessibility: Add a visible focus state for keyboard navigation */
.btn:focus-visible {
  outline: 2px solid #3B82F6;
  outline-offset: 2px;
}

.btn-icon {
  width: 1.5rem; /* 24px */
  height: 1.5rem; /* 24px */
  flex-shrink: 0; /* Prevents the icon from shrinking */
}

.btn-primary {
  background-color: #2563EB; /* Primary Blue */
}

.btn-primary:hover {
  background-color: #3B82F6; /* Hover Blue */
}

.contact-info {
  margin-top: 2.5rem; /* 40px */
  font-size: 0.875rem; /* 14px */
  color: #D1D5DB; /* Body text */
  opacity: 0.7;
}

.contact-info p {
  margin: 0;
}

.contact-info a {
  color: #3B82F6; /* Use a slightly lighter blue to stand out */
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  border-radius: 2px; /* Add radius for the outline to curve around */
}

.contact-info a:hover {
  text-decoration: underline;
  color: #D1D5DB; /* Change to body text color on hover */
}

/* Accessibility: Add a visible focus state for keyboard navigation */
.contact-info a:focus-visible {
  outline: 2px solid #3B82F6;
  outline-offset: 2px;
  text-decoration: none;
}


/* --- Responsive Design for Larger Screens --- */
@media (min-width: 640px) {
  body {
    padding: 1.5rem; /* 24px */
  }

  .content-card {
    padding: 3rem; /* 48px */
  }

  .logo {
    max-width: 24rem; /* 384px */
  }

  main p {
    font-size: 1.25rem; /* 20px */
  }
  
  .button-container {
    flex-direction: row; /* Buttons side-by-side on larger screens */
  }
  
  .btn {
    width: auto; /* Auto width for buttons on larger screens */
  }
}

