/* Navigation styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-color-1);
    position: relative;
    z-index: 200;
  }
  
  .logo::before {
    content: '';
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(135deg, var(--brand-color-1), var(--brand-color-2));
    border-radius: 8px;
    left: -0.5rem;
    top: 0.1rem;
    z-index: -1;
    opacity: 0.2;
    transform: rotate(15deg);
  }
  
  /* Media query for mobile devices */
  @media screen and (max-width: 768px) {
    .logo {
      font-size: 1.2rem; /* Smaller font size for mobile */
    }
    
    .logo::before {
      width: 1.2rem; /* Adjust the decorative element size too */
      height: 1.2rem;
      left: -0.4rem;
      top: 0.1rem;
    }
  }
  
  .nav-links {
    display: flex;
    gap: 2rem;
  }
  
  .nav-links a {
    text-decoration: none;
    color: var(--text-color-secondary);
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--brand-color-1);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
  }
  
  .nav-links a:hover {
    color: var(--brand-color-1);
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  
  .cta-button-header {
    background-color: var(--brand-color-1);
    color: var(--white);
    padding: 0.7rem 1.4rem;
    border-radius: 24px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.2);
    z-index: 200;
  }
  
  .cta-button-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.6s;
  }
  
  .cta-button-header:hover {
    background-color: var(--brand-color-2);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(233, 30, 99, 0.3);
  }
  
  .cta-button-header:hover::before {
    left: 100%;
  }
  
  /* Mobile menu hamburger icon */
  .menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 200;
  }
  
  .menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--brand-color-1);
    border-radius: 3px;
    transition: all 0.3s ease;
  }
  
  /* X icon when menu is open */
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  /* Mobile menu overlay - iPhone-like dropdown */
  .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    z-index: 150;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 120px;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .mobile-menu.active {
    transform: translateY(0);
  }
  
  .mobile-menu a {
    font-size: 1.5rem;
    margin: 15px 0;
    color: var(--brand-color-1);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.4s ease;
  }
  
  .mobile-menu.active a {
    opacity: 1;
    transform: translateY(0);
  }
  
  .mobile-menu a:nth-child(1) { transition-delay: 0.1s; }
  .mobile-menu a:nth-child(2) { transition-delay: 0.15s; }
  .mobile-menu a:nth-child(3) { transition-delay: 0.2s; }
  .mobile-menu a:nth-child(4) { transition-delay: 0.25s; }
  .mobile-menu a:nth-child(5) { transition-delay: 0.3s; }
  
  .mobile-menu a:hover {
    color: var(--brand-color-2);
    transform: scale(1.05);
  }
  
  /* Responsive adjustments for navbar */
  @media (max-width: 768px) {
    .navbar {
      padding: 1rem 0;
    }
    
    .navbar-container {
      justify-content: space-between;
    }
    
    .nav-links {
      display: none;
    }
    
    .menu-toggle {
      display: flex;
    }
    
    .mobile-menu {
      display: flex;
    }
    
    
  }
  
  /* iPhone-style animation delays for staggered links */
  @keyframes fadeSlideIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }