/* =========================================
   MOBILE LAYOUT ADJUSTMENTS (Sketch Implementation)
   ========================================= */

/* Mobile Top Bar */
.mobile-top-bar {
  color: #fff;
  background: #000;
  text-align: center;
  padding: 8px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid #eee;
  letter-spacing: 0.5px;
}

/* Mobile Header Adjustments */
@media (max-width: 1199px) {
  .hero-header {
    position: relative !important; /* Override absolute positioning */
    background: #fff !important; /* White background for mobile header */
    height: 60px;
    box-shadow: none;
    border-bottom: 1px solid #eee;
    padding: 0 15px;
    justify-content: space-between; /* Ensure logo left, hamburger right */
  }

  .hero-header-left,
  .hero-header-right,
  .hero-logo-container {
    display: none; /* Ensure desktop elements are hidden */
  }

  .mobile-logo-container {
    display: flex;
    align-items: center;
    height: 100%;
  }

  .mobile-logo-container img {
    height: 40px;
    width: auto;
  }

  .hero-mobile-toggle {
    color: #000 !important; /* Black icon */
    font-size: 1.5rem;
    padding: 0;
    display: block;
  }

  /* Adjust Hero Section for Mobile */
  .hero-section {
    height: 500px; /* Reduced height for mobile banner */
    min-height: auto;
    margin-top: 0;
  }

  .hero-slide-content {
    margin-top: 0;
    padding-top: 0;
    justify-content: center;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .hero-slide-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero-btn-join {
    font-size: 1rem !important;
    padding: 0.6rem 1.5rem !important;
  }

  /* Hide Desktop Duplicates */
  .hero-bottom-links {
    display: none !important;
  }
}

/* Mobile Hero Actions Section */
.mobile-hero-actions {
  background: #fff;
  width: 100%;
  border-top: 1px solid #ddd;
}

.action-row {
  display: flex;
  width: 100%;
}

.action-box {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  background: #fff;
  font-size: 1rem;
  text-align: center;
}

.mobile-hero-actions .action-row:nth-child(2) .action-box {
  border-bottom: none;
}

.action-full {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border-bottom: 1px solid #ddd;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  background: #fff;
  font-size: 1rem;
}

.director-msg {
  justify-content: space-between;
  padding: 15px 20px;
  background: #000; /* Black background */
  color: #fff; /* White text */
  border-bottom: none;
}

.mobile-play-btn {
  width: 30px;
  height: 30px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-play-btn i {
  font-size: 0.8rem;
  color: #fff;
  margin: 0;
}

/* Mobile News Section - Removed and replaced by floating button */
.mobile-floating-news-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--hero-primary-red, #b30000);
  color: #fff;
  padding: 8px 15px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 10;
  font-size: 0.85rem;
}

.mobile-floating-news-btn:hover {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
}

/* Mobile Social Icons */
.mobile-social-icons {
  display: flex;
  justify-content: center;
  padding: 15px;
  background: #000;
  border-top: 1px solid #333;
}

.mobile-social-icons a {
  color: #fff;
  margin: 0 15px;
  font-size: 1.2rem;
}
