*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
font-family: 'Courier New', Courier, monospace;
background-color: #0d0d0d;
color: #ffffff;
min-height: 100vh;

}

.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 30px 6%;
background-color: #0d0d0d;
border-bottom: 2px solid #222222;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
postion: sticky;
top: 0;
z-index: 100;

}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
        letter-spacing: -1px;
    cursor: pointer;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links li a {
    color: #a0a0a0; 
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}
#scroll-compass {
  position: fixed;
  top: 25px;
  right: 25px;
  z-index: 1000;
  
  width: 50px;
  height: 50px;
  
  background: rgba(43, 41, 41, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid #f4f1ea; 
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  

  will-change: transform; 
}

.needle-north {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 14px solid #fd0000; 
  margin-bottom: 2px; 
}

.needle-south {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 14px solid #ffffff;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 8%;
    min-height: 80vh;
    gap: 50px;

}

.hero-content {
    max-width: 600px;
}

.nav-links a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.search-bar {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.search-bar input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #333333;
    background: #121212;
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
}

.search-bar input:focus {
    border-color: #ffffff; 
}

.search-bar input::placeholder {
    color: #555555;
}

.search-bar button {
    padding: 15px 30px;
    border: 2px solid #ffffff;
    color: #0d0d0d;
    background-color: #ffffff;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    transition: background-color 0.2s ease;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;

}

#globe {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: linear-gradient(45deg, #111111 0%, #ffffff 100%);
    border: 4px solid #ffffff;
    box-shadow: 12px 12px 0px #222222;
    animation: jitter 4s ease-in-out infinite;
}

@keyframes bounceEffect {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    
}

footer {
    text-align: center;
    padding: 60px;
    color: #444444;
    border-top: 2px solid #222222;
    margin-top: 50px;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column-reverse; 
        text-align: center;
        padding: 40px 6%;
    }
    .hero h1 { font-size: 2.5rem; }
    .search-bar { flex-direction: column; width: 100%; }
    .search-bar button { box-shadow: none; }
    .search-bar button:hover { transform: none; }
    #globe {
        width: 240px;
        height: 240px;
        box-shadow: 6px 6px 0px #222222;
    }
}

#map {
    width: 450px;
    height: 400px;
    border: 3px solid #ffffff;
    box-shadow: 12px 12;
    background-color #121212;
    z-index: 1;
}


.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    width: 30px;
    height: 30px;
    border: 3px solid #111111;
    border-radius: 50%;
    border-top-color: #ff0000 ;
    animation: spin 0.8s linear infinite;
    margin: 0 auto;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

.travel-banner {
  color: #ffffff;
  padding: 12px;
  font-family: 'Gotham', 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.travel-image {
  width: 40px; 
  height: auto;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}



