@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;900&display=swap');

body {
  margin: 0;
  background-color: #000000;
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}

.logo {
  width: 175px;
  height: auto;
  margin-right: auto;
  display: block;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
}

.nav-button {
  font-size: clamp(16px, 2vw, 20px); /* Adjust the min/max values as per your design */
  color: #ffffff;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-weight: 200;
  text-transform: uppercase;
  padding: 5px 10px;
  font-family: 'Montserrat', sans-serif;
}

.nav-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.login-signup {
  color: #000000;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 10px 20px;
}

.login-signup:hover {
  background-color: #ffffff; /* No hover effect */
}

/* Dropdown Menu */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #000000;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border: 1px solid #ffffff;
}

.dropdown-content a {
  font-size: clamp(16px, 2vw, 18px); /* Adjust accordingly */
  color: #ffffff;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
}

.dropdown-content a:hover {
  background-color: #333333;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Sidebar Styles */
.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100%;
  background-color: #000000;
  overflow-y: auto;
  transition: 0.3s;
  padding: 20px;
  z-index: 1000;
}

.sidebar.active {
  right: 0;
}

.sidebar a {
  display: block;
  margin-bottom: 10px;
}

.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1100;
}

.hamburger img {
  width: 40px;
  height: auto;
}

@media (max-width: 1024px) {
  .nav-buttons {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

.mitb-image-container {
  position: relative;
  width: 100%;
}

.mitb-image {
  width: 100%;
  height: auto;
  display: block;
}

.image-text {
  position: absolute;
  bottom: 5%;
  left: 5%;
  font-size: clamp(32px, 8vw, 120px); /* Ensure this remains larger */
  font-weight: 900;
  color: #ffffff;
  white-space: pre-line;
  line-height: 1.2;
  text-shadow: 2px 2px 5px #000000;
}

.home-title {
  font-size: clamp(24px, 5vw, 45px); /* Responsive title size */
  font-weight: 900;
  color: #ffffff;
  text-align: left;
  margin: 20px 0;
}

.home-title {
  font-size: clamp(24px, 5vw, 45px); /* Responsive title size */
  font-weight: 900;
  color: #ffffff;
  text-align: left;
  margin: 20px 0;
}

.home-content {
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  font-size: clamp(18px, 3vw, 25px); /* Adjust this to your preference */
  font-weight: 200;
  line-height: 1.6;
  margin-bottom: 20px;
}

.divider-line {
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  margin-top: 20px;
}

.why-acm-title {
  font-size: clamp(24px, 4vw, 45px); /* Slightly smaller max size */
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  margin: 20px 0;
}

.audio-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 15px;
}

.audio-button, .control-button {
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  border: none;
  cursor: pointer;
}

.audio-button {
  background-image: url('assets/audio.png'); /* Replace with your audio icon */
}

.play-button {
  background-image: url('assets/play.png'); /* Replace with your play icon */
}

.pause-button {
  background-image: url('assets/pause.png'); /* Replace with your pause icon */
}

.restart-button {
  background-image: url('assets/restart.png'); /* Replace with your restart icon */
}

.hidden {
  display: none;
}

.footer {
  background: linear-gradient(to right, #FE6625 0%, #0100FD 100%);
  padding: 20px;
  display: flex;
  flex-direction: row; /* Ensures elements are aligned horizontally */
  justify-content: space-between; /* Space between left and right content */
  align-items: flex-start; /* Align items to the top of the footer */
  color: white;
  overflow-x: auto; /* Allow horizontal scrolling if necessary */
}

.footer-links {
  display: flex;
  flex-direction: column; /* Stack links vertically */
  gap: 15px; /* Add space between links */
  flex: 0 0 auto; /* Prevent links from stretching */
}

.footer-link {
  font-size: clamp(12px, 1.5vw, 16px);
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-logo-container {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center logo and icons */
  gap: 160px; /* Add gap between the logo and social icons */
  flex: 0 0 auto; /* Prevent container from resizing */
}

.footer-logo {
  width: 180px; /* Adjust the size of the main logo */
  height: auto; /* Maintain aspect ratio */
  margin-top: 12px; /* Adjust this value to move the logo down or up */
}

.footer-social-links {
  display: flex;
  gap: 20px; /* Add space between LinkedIn and Instagram icons */
  justify-content: center; /* Center the icons */
  align-items: center; /* Align icons in the center */
  flex: 0 0 auto; /* Prevent social links from resizing */
}

.footer-social-icon {
  width: 45px; /* Size of the social media icons */
  height: 45px;
  transition: transform 0.3s ease; /* Add smooth scaling effect */
}

.footer-social-icon:hover {
  transform: scale(1.1); /* Scale up the icons on hover */
}

.footer-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* Align content to the center of the section */
  gap: 10px;
  flex: 0 0 auto; /* Prevent content from resizing */
}

/* Media Queries for Minor Adjustments */
@media (max-width: 768px) {
  .footer {
    overflow-x: auto; /* Ensure the footer remains scrollable horizontally */
  }

  .footer-logo {
    width: 150px; /* Slightly reduce the logo size for small screens */
  }

  .footer-social-icon {
    width: 40px; /* Reduce social media icon size */
    height: 40px;
  }
}

.google-signin-container {
  display: flex;
  justify-content: center; /* Horizontally center */
  align-items: center;     /* Vertically center */
  width: 100%;
  height: 70vh;           /* Ensure the container takes the full height of the viewport */
  padding-top: 0px;       /* Add padding to move the button down (increase value to move down) */
  padding-bottom: 0px;    /* Add padding to move the button up (increase value to move up) */
}

.google-signin-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: #888888; /* Set text to grey */
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  border: none; /* Remove outline and border */
  cursor: pointer;
  transition: background-color 0.3s;
  font-family: sans-serif; /* Use a generic sans-serif font */
  border-radius: 0; /* No corner radius */
}

.google-signin-button:hover {
  background-color: #f8f8f8; /* Light gray on hover */
}

.google-logo {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
