/* Mobile-First Enhanced CSS for Straik */

/* CSS Reset and Base Styles */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #222;
  background-color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header Styles - Mobile First */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 111, 0, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  min-height: 60px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* Language Switcher */
.lang-switcher {
  position: relative;
}

.lang-switch-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  color: white;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.lang-switch-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.flag-img {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
}

.dropdown-arrow {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.lang-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  margin-top: 0.5rem;
  min-width: 120px;
}

.lang-options.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem;
  color: #222;
  font-size: 0.875rem;
  transition: background-color 0.2s ease;
}

.lang-option:hover {
  background-color: #f5f5f5;
}

/* Desktop Navigation - Hidden on Mobile */
.header-nav {
  display: none;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  margin: 0 0.25rem;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-cta {
  display: none;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FF7205 !important;
  z-index: 1002;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Remove blur effect for main content when mobile nav is open */
.mobile-nav-overlay.open ~ main,
header:has(.mobile-nav-overlay.open) ~ main {
  filter: none;
  transition: filter 0.3s ease;
}

.mobile-nav-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FF7205 !important;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  width: 100%;
  height: 100vh;
}

.mobile-nav-overlay.open .mobile-nav-content {
  transform: translateX(0);
}

.mobile-nav-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1003;
}

.mobile-nav {
  margin-top: 0;
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-nav-link {
  display: block;
  padding: 1rem 1.5rem;
  color: white !important;
  text-decoration: none;
  font-weight: 500;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0.5rem 0;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
}

.mobile-nav-link:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateX(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: white !important;
}

.mobile-nav-cta {
  background: white;
  color: #FF7205;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
  text-align: center;
  border-bottom: none;
}

.mobile-nav-cta:hover {
  background: #f5f5f5;
  color: #FF7205;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  text-align: center;
  padding: 2rem 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: white;
  margin-bottom: 2rem;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

/* Enhanced Hero CTA Button - Updated to match image design */
.hero-cta {
  background: transparent;
  color: white;
  padding: 0.875rem 2.5rem;
  border: 2px solid white;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: none;
  text-transform: none;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
}

.hero-cta:hover {
  background: white;
  color: #ff6f00;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: white;
}

/* Enhanced Store Buttons - Better positioning */
.store-buttons {
  position: static; /* Remove absolute positioning */
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem; /* Add spacing from CTA button */
  padding: 0;
}

.store-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.store-btn img {
  height: 45px;
  width: auto;
  transition: transform 0.2s ease;
  border-radius: 6px;
}

.store-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.store-btn:hover img {
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .store-buttons {
    margin-top: 1.5rem;
    gap: 0.75rem;
  }
  
  .store-btn img {
    height: 40px;
  }
}

@media (max-width: 480px) {
  .store-buttons {
    flex-direction: column;
    align-items: center;
    margin-top: 1.25rem;
  }
  
  .store-btn {
    width: 100%;
    max-width: 200px;
  }
}

/* Enhanced Header CTA Button */
.cta-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.cta-btn:hover {
  background: white;
  color: #ff6f00;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-color: white;
}

/* Mobile Menu Button Enhancement */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

/* Show mobile menu button on mobile */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex !important;
  }
}

.mobile-menu-btn span {
  width: 20px;
  height: 2px;
  background: white;
  margin: 2px 0;
  transition: all 0.3s ease;
  border-radius: 1px;
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Language Switcher Button Enhancement */
.lang-switch-btn {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.lang-switch-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .hero-cta {
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
  }
  
  .store-buttons {
    bottom: 1rem;
    gap: 0.5rem;
  }
  
  .store-btn img {
    height: 40px;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
  }
  
  .store-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Section Styles */
.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #222;
}

/* How It Works Section */
.how-section {
  padding: 3rem 0;
  background: #f8f9fa;
}

.steps-container {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.step-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  text-align: center;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-image {
  margin-bottom: 1.5rem;
}

.step-image img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 0 auto;
  border-radius: 0.5rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #ff6f00;
  color: white;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #222;
}

.step-description {
  color: #666;
  line-height: 1.6;
}

/* Features Section */
.features-section {
  padding: 3rem 0;
  background: white;
}

.features-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.feature-card {
  text-align: center;
  padding: 2rem 1rem;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6f00, #ff9800);
  color: white;
  border-radius: 50%;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #222;
}

.feature-description {
  color: #666;
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

/* Blog Section */
.blog-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.blog-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}

.blog-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-title a {
  color: #222;
  transition: color 0.2s ease;
}

.blog-title a:hover {
  color: #ff6f00;
}

.blog-date {
  color: #888;
  font-size: 0.875rem;
}

.blog-more {
  text-align: center;
}

.btn-secondary {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: transparent;
  color: #ff6f00;
  border: 2px solid #ff6f00;
  border-radius: 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #ff6f00;
  color: white;
}

/* Footer */
.footer {
  background: #222;
  color: white;
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}

.footer-section {
  text-align: center;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #ccc;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ff6f00;
}

.footer-apps {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-apps img {
  height: 40px;
  width: auto;
  transition: transform 0.2s ease;
}

.footer-apps a:hover img {
  transform: scale(1.05);
}

.footer-socials {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: #ff6f00;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #444;
}

.footer-copyright {
  color: #ccc;
  font-size: 0.875rem;
}

/* Tablet Styles */
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
  
  .header-container {
    padding: 1rem 2rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .steps-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .store-buttons {
    bottom: 3rem;
  }
}

/* Desktop Styles */
@media (min-width: 1024px) {
  .header-nav {
    display: flex;
    gap: 2rem;
  }
  
  .nav-link {
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    margin: 0 0.25rem;
  }
  
  .nav-link:hover,
  .nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .header-cta {
    display: inline-block;
    background: white;
    color: #ff6f00;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .header-cta:hover {
    background: #f5f5f5;
    transform: translateY(-1px);
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .steps-container {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-section {
    text-align: left;
  }
  
  .footer-apps,
  .footer-socials {
    justify-content: flex-start;
  }
}

/* Large Desktop */
@media (min-width: 1200px) {
  .hero-title {
    font-size: 4rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
}

/* Accessibility and Performance */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus styles for accessibility */
*:focus {
  outline: 2px solid #ff6f00;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .hero-title,
  .hero-subtitle {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  }
}

/* Print styles */
@media print {
  .header,
  .footer,
  .store-buttons {
    display: none;
  }
  
  .hero {
    background: none;
    color: black;
  }
  
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
  }
}
/* Updated store buttons - responsive */
.store-buttons {
  position: static;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
  padding: 0;
}

/* Hide on mobile */
@media (max-width: 768px) {
  .store-buttons {
    display: none !important;
  }
}

/* Desktop positioning if needed */
@media (min-width: 769px) {
  .store-buttons {
    position: static; /* or absolute if you prefer the original positioning */
  }
}

/* Header Download Button - Hidden on desktop */
.header-store-buttons {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.header-download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: none;
  cursor: pointer;
}

.header-download-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header-download-btn i {
  font-size: 1rem;
}

.download-text {
  font-size: 0.8rem;
  font-weight: 500;
}

.header-store-btn:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ff6f00;
  box-shadow: 0 4px 12px rgba(255, 111, 0, 0.3);
}

.header-store-btn i {
  transition: all 0.3s ease;
}

.header-store-btn:hover i {
  transform: scale(1.1);
}

/* Hero Store Buttons - Show on desktop, hide on mobile */
.store-buttons {
  position: static;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
  padding: 0;
}

/* Hide hero store buttons on mobile */
@media (max-width: 768px) {
  .store-buttons {
    display: none !important;
  }
}

/* Show hero store buttons on desktop */
@media (min-width: 769px) {
  .store-buttons {
    display: flex;
  }
  /* Ensure header buttons stay hidden on desktop */
  .header-store-buttons {
    display: none !important;
  }
}

/* Mobile specific - ensure hero buttons are hidden */
@media (max-width: 480px) {
  .store-buttons {
    display: none !important;
  }
}

/* Mobile specific - make "Partenariat" text orange on mobile */
@media (max-width: 768px) {
  .cta-btn[data-page="partenariat"],
  .mobile-nav-link[href="partenariat.html"] {
    color: #FF7205 !important;
  }
  
  /* Ensure the mobile nav CTA button text is orange */
  .mobile-nav-cta {
    color: #FF7205 !important;
  }
  
  /* Ensure mobile navigation overlay is visible and has orange background */
  .mobile-nav-overlay {
    background: #FF7205 !important;
  }
  
  .mobile-nav-overlay.open {
    background: #FF7205 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .mobile-nav-content {
    background: #FF7205 !important;
  }
  
  /* Hide Partenariat and Contact buttons on mobile for all pages except main page */
  body:not(.home-page) .cta-button {
    display: none !important;
  }
  
  /* Additional rule to ensure buttons are hidden on mobile for non-home pages */
  body:not(.home-page) .header .cta-button,
  body:not(.home-page) .header-content .cta-button {
    display: none !important;
  }
}

/* Enhanced responsive header layout */
@media (min-width: 1024px) {
  .header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .header-store-btn {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .header-store-buttons {
    display: flex !important;
  }
  
  .header-download-btn {
    display: flex !important;
  }
}
/* Mobile Navigation Title */
.mobile-nav-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 2rem;
  margin-top: -1rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Update mobile nav content for better spacing */
.mobile-nav-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FF7205 !important;
  padding: 3rem 1rem 2rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  width: 100%;
  height: 100vh;
}