/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* BASE STYLES */
  body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
  }
  
  /* NAVIGATION */
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #333;
    padding: 1rem;
  }
  .logo img {
    max-height: 50px;
  }
  .desktop-nav {
    display: flex;
  }
  .desktop-nav .navigation {
    list-style: none;
    display: flex;
    align-items: center;
  }
  .desktop-nav .navigation li {
    position: relative;
    margin: 0 1rem;
  }
  .desktop-nav .navigation a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 0.5rem;
  }
  .desktop-nav .navigation a:hover {
    text-decoration: underline;
  }
  .desktop-nav .dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #333;
    list-style: none;
    padding: 0;
    min-width: 150px;
    z-index: 1000;
  }
  .desktop-nav .dropdown:hover .dropdown-menu {
    display: block;
  }
  .desktop-nav .dropdown .dropdown-menu li {
    margin: 0;
  }
  .desktop-nav .dropdown .dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: #fff;
  }
  
  /* HAMBURGER & MOBILE MENU */
  .hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    position: relative;
    z-index: 1001;
  }
  .hamburger span {
    display: block;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  .hamburger.active span {
    background: #fff;
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 2rem;
    z-index: 1000;
  }
  .mobile-menu.active {
    display: flex;
  }
  .mobile-menu .mobile-navigation {
    list-style: none;
  }
  .mobile-menu .mobile-navigation li {
    margin: 1rem 0;
  }
  .mobile-menu .mobile-navigation a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
  }
  .mobile-menu .dropdown {
    position: relative;
  }
  .mobile-menu .dropdown > a::after {
    content: "\25BC";
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
  }
  .mobile-menu .dropdown.active > a::after {
    transform: rotate(180deg);
  }
  .mobile-menu .dropdown .dropdown-menu {
    list-style: none;
    margin-left: 1rem;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
  }
  .mobile-menu .dropdown.active .dropdown-menu {
    max-height: 300px;
  }
  
  /* FOOTER */
  footer {
    background: #333;
    color: #fff;
    padding: 1rem;
    text-align: center;
    margin-top: 2rem;
  }
  .footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
  }
  .footer-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
  }
  .footer-links a:hover {
    text-decoration: underline;
  }
  .footer-copy {
    font-size: 0.9rem;
  }
  
  /* NEW GALLERY SECTION */
#new-gallery {
    width: 100% !important;
    max-width: 500px !important;
    margin: 0 auto !important;
    padding: 2rem;
    background: #f4f4f4;
    text-align: center;
  }
  
  #new-gallery .slider {
    width: 100% !important;
  }

  #new-gallery h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #333;
  }
  
  /* Slider container */
  .slider {
    position: relative;
    max-width: 800px !important;
    margin: 0 auto !important;
    overflow: hidden !important;
  }
  
  /* Slides wrapper: flex container for smooth transitions */
  .slides-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  /* Each slide takes up 100% of the slider container */
  .slide {
    flex: 0 0 100%;
  }
  
  .slide img {
    width: 100%;
    display: block;
  }

  /* Arrow Controls */
  .prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 2rem;
    border-radius: 5px;
  }
  
  .prev {
    left: 10px;
  }
  
  .next {
    right: 10px;
  }
  
  /* Responsive adjustments for small screens */
  @media (max-width: 480px) {
    .prev, .next {
      font-size: 1.5rem;
      padding: 0.5rem;
    }
  }
  
  
  /* Responsive Adjustments */
  @media (max-width: 640px) {
    .services-container {
      flex-direction: column;
      gap: 1rem;
    }
  }  
  
  /* RESPONSIVE ADJUSTMENTS */
  @media (max-width: 768px) {
    .desktop-nav {
      display: none;
    }
    .hamburger {
      display: flex;
    }
  }
  @media (max-width: 640px) {
    .welcome-pair,
    .current-pair {
      flex-direction: column;
      text-align: center;
    }
    .current-pair .current-text {
      order: 1;
    }
    .current-pair .current-image {
      order: 2;
    }
    .welcome-text,
    .current-text {
      text-align: center;
    }
  }
  @media (max-width: 480px) {
    .gallery-row {
      flex-direction: column;
    }
    .gallery-column {
      width: 100%;
    }
  }
  @media (min-width: 1024px) {
    #welcome-section {
      gap: 0;
    }
  }