
.navbar {
    transition: all 0.3s ease-in-out;
}

/* Transparent Navbar Before Scroll */
.navbar.transparent {
    background-color: transparent;
    border-bottom: none;
}

/* White Navbar After Scroll */
.navbar.scrolled {
    background-color: white;
    border-bottom: 1px solid #ddd;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

/* Navbar Text Before Scroll */
.navbar.transparent .nav-link,
.navbar.transparent #nav-text,
.navbar.transparent #nav-subtext,
.navbar.transparent #menu-icon {
    color: white;
}

/* Navbar Text After Scroll */
.navbar.scrolled .nav-link,
.navbar.scrolled #nav-text,
.navbar.scrolled #nav-subtext,
.navbar.scrolled #menu-icon {
    color: black;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    width: 180px;
    border-radius: 6px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background-color: #f1f1f1;
}

/* Mobile Dropdown */
.mobile-dropdown-menu {
    display: none;
    padding-left: 15px;
}

.rotate-180 {
    transform: rotate(180deg);
}

/* Map Container */
.map-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Map Image */
.map-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Pin Styling - Fluid Position */
.svg-pin {
    position: absolute;
    width: 3vw; /* Responsive width */
    max-width: 40px; /* Max limit */
    height: auto;
    cursor: pointer;
    animation: float 2.5s ease-in-out infinite;
    top: 49%; /* Relative to viewport height */
    left: 15%; /* Relative to viewport width */
    transform: translate(-50%, -100%); /* Center the pin */
}

/* Pin Text & Logo - Fluid Position */
.pin-text-container {
    position: absolute;
    top: calc(49% - 25px); /* Adjust relative to the pin */
    left: 10%;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float 2.5s ease-in-out infinite;
}

/* Logo Styling */
.pin-logo {
    width: 3vw;
    max-width: 25px;
    height: auto;
}

/* Text Styling */
.pin-text {
    font-size: 1vw; /* Scales with viewport */
    font-weight: bold;
    color: black;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.animate-scroll {
    display: flex;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
}
