/* ======================================
   MAIN STYLESHEET FOR FLY BREI
   ====================================== */

/* Import all CSS files */
@import url('variables.css');
@import url('base.css');
@import url('typography.css');
@import url('layout.css');
@import url('header.css');
@import url('footer.css');
@import url('components.css');
@import url('pages.css');
@import url('responsive.css');

/* Add Google Fonts import at the top of the file */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&family=Quicksand:wght@300;400;500;600;700&display=swap');

/* Add specific styles to override any existing menu styles */
@media (max-width: 768px) {
  /* Header and navigation fixes for mobile */
  .header-content {
    width: 100%;
    position: relative;
  }
  
  .main-nav {
    position: static;
  }
  
  /* Mobile menu specific styles */
  .main-nav .menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    z-index: 1000;
    padding: 60px 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow-y: auto;
  }
  
  .main-nav .menu.active {
    display: flex;
    justify-content: center;
  }
  
  .main-nav .menu li {
    margin: 15px 0;
    width: 100%;
    max-width: 300px;
  }
  
  .main-nav .menu li a {
    display: block;
    padding: 10px;
    font-size: 1.2rem;
    font-weight: 500;
  }
}

/* Simple menu toggle button - no animations */
.menu-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  display: none;
  z-index: 1100;
}

/* Style the menu text icon */
.menu-text {
  font-size: 28px;
  line-height: 1;
  display: block;
}

/* When menu is open, show a fixed close button */
.menu-toggle[aria-expanded="true"] {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 8px 12px;
}

/* Make the close icon (X) slightly larger */
.menu-toggle[aria-expanded="true"] .menu-text {
  font-size: 32px;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
}

/* Tagline styling */
.tagline {
  font-family: var(--font-secondary);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--spacing-md);
  letter-spacing: 0.5px;
}

.footer-info .tagline {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-sm);
}

@media (max-width: 768px) {
  .tagline {
    font-size: 1.2rem;
  }
}
