/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

/* Main Container */
.container {
  width: 90%;
  max-width: 800px;
  background-color: white;
  padding: 25px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center; /* Ensures all content stays centered */
  gap: 20px; /* Adds spacing between sections */
}

/* Header Section */
header {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center-aligns logo and text */
  gap: 15px;
  margin: 20px 0;
}

header h1 {
  font-size: clamp(24px, 5vw, 48px);
  font-weight: bold;
  margin: 0;
  text-align: center;
}

header p {
  font-size: clamp(12px, 2vw, 24px);
  color: #666;
  margin: 0;
}

/* Logo Styles */
.landing-page-logo {
  width: 25vw; /* Dynamically adjusts to screen size */
  height: auto; /* Maintains aspect ratio */
  min-width: 200px; /* Ensures it doesn’t get too small */
  max-width: 400px; /* Prevents it from being too large */
}

/* Button Container */
.button-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Ensures buttons wrap on smaller screens */
  margin: 20px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: bold;
  color: white;
  background-color: #000;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.button i {
  margin-right: 8px;
  font-size: clamp(16px, 2vw, 24px);
}

.button:hover {
  background-color: #444;
  transform: translateY(-2px); /* Subtle hover effect */
}

/* Footer Section */
footer {
  text-align: center;
  font-size: 0.9em;
  color: #777;
}

#social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
  flex-wrap: wrap; /* Ensures icons wrap on smaller screens */
}

#social-links a {
  font-size: clamp(20px, 2vw, 32px);
  color: #000;
  transition: color 0.3s ease;
}

#social-links a:hover {
  color: #444;
}

footer p {
  font-size: clamp(12px, 1.2vw, 16px);
  margin-top: 10px;
}

/* Optional: Remove Media Queries Since Font Sizes are Dynamic */
