/* Mobile-specific styles extracted from main.css */

/* Mobile Header */
.mobile-header {
    background: rgba(31, 31, 41, 0.6);
    color: #ffffff;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
}

.mobile-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
}

.mobile-logo {
    height: 80px; /* Increased from 60px */
}

.mobile-menu-toggle {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.8rem;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 0.75rem 1rem 1rem 1rem;
    background: rgba(31, 31, 41, 0.6);
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
}

/* Hero overlap for mobile (ensure background starts at top) */
.hero {
  margin-top: 0;
  padding-top: 6rem; /* accommodate absolute header height (approx 96px) */
}

/* Ensure hero heading wraps on mobile */
.hero .display-4,
.hero .hero-content-box h1 {
  white-space: normal !important; /* Allow line to wrap */
  word-break: break-word;        /* Prevent overflow if long */
}

/* Adjust hero content box width for mobile */
.hero .hero-content-box {
  width: 100% !important;   /* Override inline 1000px width */
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;       /* Center align if needed */
  padding: 0 1rem;          /* Small side padding */
  box-sizing: border-box;
} 