@charset "utf-8";
/* CSS Document */

	
 /* HEADER STYLES */	
 

    header.scrolled {
      background: rgba(0, 153, 255, 0.95); /* White background on scroll */
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .logo {
      font-size: 1.65rem;
      font-weight: bold;
      color: #0099ff;
      transition: color 0.3s ease;
	  max-width: 30ch;
    }
	
	  .lang { 
	   font-size: .55rem;
	  }
	  
	  .lang a{ 
	   font-size: .55rem;
	   text-decoration:none;
	   color:#666;
	  }
	  
	  	  .lang i{ 
	   font-size: .85rem;
	   	   color:#666;
	  }

    header.scrolled .logo {
      color: #fff;
    }

    .nav-links {
      display: flex;
      gap: 1.5em;
    }

    .nav-links a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      transition: color 0.3s ease;
    }
	
	    .nav-links a:hover {
      text-decoration: none;
      color: #666;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    header.scrolled .nav-links a {
      color: #fff;
    }
	
    header.scrolled .lang a{ 
	   font-size: .55rem;
	   text-decoration:none;
	   color:#ccc;
	  }
	  
    header.scrolled .lang i{ 
	   font-size: .85rem;
	   	   color:#ccc;
	  }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      color: #333;
      cursor: pointer;
      z-index: 1001;
      transition: color 0.3s ease;
    }

    header.scrolled .menu-toggle {
      color: #fff;
    }
	
 /* MOBILE NAV */
    @media (max-width: 768px) {
      .menu-toggle {
        display: block;
      }

      .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.97);
        display: none;
        padding: 1em 0;
      }

      .nav-links a {
        color: #333;
        padding: 0.8em;
        text-align: center;
        width: 100%;
      }

      .nav-links.show {
        display: flex;
      }
	  
	   .logo {
      font-size: 1rem;
      font-weight: bold;
	  font-family: Playfair Display;
      color: #0099ff;
      transition: color 0.3s ease;
      max-width: 18ch;
      }
	  
	  .lang { 
	   font-size: .55rem;
	   margin-right:12px;
	  }
	  
	   	  .lang i{ 
	   font-size: .55rem;
	   	   color:#666;
	  }

    }
	
	
/* HERO SECTION */
    .hero {
    
      background: url('images/hero-bg.jpg') no-repeat center center/cover;
    }

@media (max-width: 768px) {	
		.hero-thumb {
  width: 400px;
  max-width: 90%;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  animation: floatImage 4s ease-in-out infinite;
  margin-top:1.5em;
}
}	