* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1f1f1f;
    line-height: 1.6;
    width: 100%;
    overflow-x: hidden;
  }
  
  .container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .header {
    background-color: black;
    padding: 40px 0;
    position: relative;
    z-index: 1000;
  
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
  
  
  .header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }


  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.3s ease;
  }
  
  .hamburger .bar {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  

  .side-menu {
    position: fixed;
    top: 0;
    right: -450px;
    width: 400px;
    height: 100vh;
    background-color: black;
    color: white;
    padding: 80px 80px;
    transition: right 0.3s ease;
    z-index: 999; 
  }
  
  .side-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .side-menu ul li {
    margin: 20px 0;
  }
  
  .side-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 35px;
    font-weight: 500;
  }

  .side-menu ul li a:hover {
    color: #0068C7;
    transition: color 0.3s ease;
  }
  

  .side-menu.active {
    right: 0;
  }

  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5); 
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 998; 
  }
  
  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .logo {
    font-size: 40px;
    font-weight: 700;
    font-family: 'Arial Black', 'Helvetica Neue', sans-serif;
    display: flex;
    align-items: center;
  }
  
  .logo-main {
    color: #0068C7;
    font-style: italic;
    letter-spacing: -2px;
  }
  
  .logo-tag {
    background-color: #000;
    color: white;
    margin-left: 6px;
    font-style: italic;
    transform: skewX(-10deg);
    display: inline-block;
    letter-spacing: -1px;
  }
  

  
  /* ===== HERO ===== */
  .hero {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
                url('IMG/Scuba_Photo.jpg') center/cover no-repeat;
    color: white;
    height: 100vh;
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    overflow: hidden;
  }
  
  .hero .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; 
    position: relative;
    height: 100%;
    padding-bottom: 50px;
  }
  
  .hero-content {
    max-width: 700px;
  }
  
  .hero-content h1 {
    font-size: 150px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 32px;
  }
  
  .hero-content p {
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 100%;
  }
  
  .hero-buttons {
    display: flex;
    gap: 20px;
  }
  
  .hero-buttons button {
    background: transparent;
    border: 1px solid white;
    color: white;
    width: 250px;
    height: 75px;
    cursor: pointer;
    font-weight: 500;
    font-size: 42px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .hero-buttons button:hover {
    background: white;
    color: black;
  }
  
  /* DIVE NOW */
  .dive-now-vertical {
    position: absolute;
    bottom: 50px; 
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  
  .dive-now-vertical span {
    writing-mode: vertical-rl;
    transform: none;
    font-size: 25px;
    letter-spacing: 1px;
    color: white;
  }
  
  .dive-now-vertical img {
    width: 14px;
    height: auto;
    color: white;      
    filter: none;       
  }
  
  @keyframes float {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-16px);
    }
    100% {
      transform: translateY(0);
    }
  }
  
  @keyframes arrowFloat {
    0% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(8px);
    }
    100% {
      transform: translateX(0);
    }
  }
  
  .dive-now-vertical {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    animation: float 2.5s ease-in-out infinite;
    transition: transform 0.3s ease;
  }
  

  /* ===== SCUBA SCHOOLS ===== */
  .scuba-schools {
    padding: 80px 0;
    text-align: center;
  }
  
  .scuba-schools h2 {
    font-size: 75px;
    margin-bottom: 24px;
  }
  
  .scuba-schools p {
    font-size: 22px;
    max-width: 1440px;
    margin: 0 auto 40px;
  }
  
  .school-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .school-gallery img {
    width: 600px;
    height: auto;
    border-radius: 12px;
  }
  
  /* ===== DIVING LOCATIONS ===== */
  .diving-locations {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 40px;
    background-color: white;
  }
  
  .locations-box h3 {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.2;
  }
  
  .locations-box {
    height: 150px;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 40px;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }
  

  .locations-layout {
    position: relative;
    background: url('IMG/Map.png') center/contain no-repeat;
    background-size: cover;
    height: 600px; 
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    overflow: hidden;
    max-width: 100%;
    border-radius: 8px;
  }
  
  .locations-thumbnails {
    width: 350px;
    height: 600px;       
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-right: 8px;
    box-sizing: border-box;
    z-index: 2;
  }
  
  .locations-thumbnails img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .locations-thumbnails::-webkit-scrollbar {
    display: none;
    width: 6px;
  }
  .locations-thumbnails::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
  }

  .location-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.location-thumb img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.location-thumb:hover img {
  transform: scale(1.05);
}

.location-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 18px;
  text-align: center;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.location-thumb:hover .location-label {
  opacity: 1;
  transform: translateY(0);
}
  
  /* ===== ENCOUNTERS ===== */
  .encounters {
    padding: 80px 0;
    text-align: center;
  }
  
  .encounters h1 {
    font-size: 75px;
    margin-bottom: 16px;
  }
  
  .encounters p {
    max-width: 1440px;
    margin: 0 auto 40px;
    font-size: 22px;
  }
  
  .encounter-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    padding: 0 20px;
  }
  
  .card {
    background: #0068C7;
    border-radius: 12px;
    padding: 16px;
    text-align: left;
  }
  
  .card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 12px 0;
  }

  .button-card{
    text-align: right;
  }
  
  .card a {
    color: white;
    text-decoration: none;
    font-weight: 600;
  }

  .card p{
    font-size: 14px;
    font-weight: 400;
    color: white;
  }
  
  /* ===== VIDEOS ===== */
  .videos-section {
    background-color: #0068C7;
    padding: 50px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
  
  .videos-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: white;
  }
  
  .videos-inner h2 {
    font-size: 75px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.3;
  }
  
  .video-thumbnail {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }
  
  .video-thumbnail iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 16px;
  }
  
  /* ===== FOOTER ===== */
  .footer {
    background-color: black;
    color: white;
    padding: 40px 0;
    
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
  
  .footer-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-heading {
    text-align: center;
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 24px;
  }
  
  .footer-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
  }
  
  .footer-columns .column {
    flex: 1;
    padding: 5px;
  }
  
  .footer-columns .left {
    text-align: left;
  }
  .footer-columns .center {
    text-align: center;
  }
  .footer-columns .right {
    text-align: right;
  }
  
  /* ===== MOBILE RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    .header-container {
      flex-direction: row;
      padding: 0 20px;
    }
  
    .logo {
      font-size: 28px;
    }
  
    .hero-content h1 {
      font-size: 60px;
    }
  
    .hero-content p {
      font-size: 16px;
    }
  
    .hero-buttons {
      flex-direction: column;
      gap: 12px;
    }
  
    .hero-buttons button {
      width: 100%;
      height: 60px;
      font-size: 20px;
    }
  
    .dive-now-vertical {
      display: none;
    }
  
    .scuba-schools h2,
    .videos-inner h2,
    .encounters h1 {
      font-size: 40px;
    }
  
    .scuba-schools p,
    .encounters p {
      font-size: 16px;
      padding: 0 10px;
    }
  
    .school-gallery img {
      width: 100%;
    }
  
    .locations-box {
      grid-template-columns: 1fr;
      height: auto;
      padding: 20px;
    }
  
    .locations-box h3 {
      font-size: 24px;
    }
  
    .locations-layout {
        flex-direction: column;
        height: auto;
        background: none; 
        padding: 0;
        margin: 0;
      }
      
    .locations-thumbnails {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 16px;
        padding: 0 20px 10px 20px;
        scroll-snap-type: x mandatory;
      }
      
    .locations-thumbnails img {
        width: 250px;
        height: 150px;
        flex-shrink: 0;
        border-radius: 12px;
        object-fit: cover;
        scroll-snap-align: start;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      }
      

    .locations-thumbnails::-webkit-scrollbar {
        display: none;
      }
  
    .encounter-cards {
      grid-template-columns: 1fr;
      padding: 0 10px;
    }
  
    .card p {
      font-size: 16px;
    }
  
    .footer-heading {
      font-size: 32px;
    }
  
    .footer-columns {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-columns .column {
      padding: 10px 0;
    }
  
    .container {
      padding: 0 10px;
    }
  }
  