body {
    font-family: 'Poppins', sans-serif;
}
/* Navbar styles */
.navbar {
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent for a modern look */
    backdrop-filter: blur(10px); /* Adds a frosted glass effect */
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar-scrolled {
    background-color: rgba(0, 0, 0, 1); /* Solid background when scrolled */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8); /* Adds depth */
}


/* Navbar links */
.navbar-dark .navbar-nav .nav-link {
    color: #0d1b2b; /* Light color for contrast */
    font-weight: 500; /* Slightly bold for emphasis */
    text-transform: uppercase; /* Makes links uniform */
    transition: color 0.3s ease, transform 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #ffc107; /* A bright cyan on hover */
    transform: scale(1.1); /* Slight zoom effect */
    text-shadow: 0 1px 5px #be8f01; /* Subtle glow */
}

/* Active link styling */
.navbar-dark .navbar-nav .nav-link.active {
    color: #ac881c; /* Highlight the active link */
    font-weight: bold; /* Distinguish the active link */
}

/* Navbar shadow when scrolling */
.navbar.fixed-top.scrolled {
    background-color: rgba(36, 29, 29, 0.95); /* Slightly lighter than black */
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.7); /* Enhanced shadow */
}

/* Add underline effect on hover */
.navbar-dark .navbar-nav .nav-link::after {
    content: "";
    display: block;
    height: 2px;
    width: 0;
    background: #866b17; /* Cyan underline */
    transition: width 0.3s ease;
    margin-top: 2px;
}

.navbar-dark .navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Navbar brand */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffc107; /* Gold color for the brand */
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.navbar-brand:hover {
    color: #17a2b8; /* Matches link hover color */
    text-shadow: 0 2px 8px rgba(23, 162, 184, 0.8); /* Glow effect */
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .navbar-dark .navbar-nav .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Navbar link hover effect */
.nav-link {
    transition: color 0.2s;
}

.nav-link:hover {
    color: #f8d210;
}

/* Hero Section */
.hero-section {
    background: url('/img/Header.jpg') no-repeat center center/cover;
    color: #0a0d29d0;
    padding: 100px 0;
    text-align: center;
    position: relative;
    animation: fadeIn 2s ease-in-out;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 600;
    animation: slideIn 2s ease-out;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero-section .btn-primary {
    background-color: #f39c12;
    border: none;
    padding: 10px 20px;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: background-color 0.3s;
}

.hero-section .btn-primary:hover {
    background-color: #e67e22;
}

/* Animations */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slideIn {
    0% { transform: translateY(-50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Destination Cards */
.destination-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.destination-card img {
    border-radius: 10px;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
}

footer p {
    margin-bottom: 0;
}

/* Scroll Down Navbar Effect */
.navbar-scrolled {
    background-color: #333 !important;
}

#destinations {
    background-color: #f9f9f9;
}

.destination-card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.destination-card img {
    object-fit: cover;
    height: 200px;
    width: 100%;
}

.card-body {
    text-align: left;
    background-color: #fff;
}

.card-title {
    font-weight: 600;
    font-size: 1.2rem;
    color: #333;
}

.card-text {
    font-size: 0.95rem;
    color: #666;
}
.social-icon {
    display: block;
    width: 50px;
    height: 50px;
    background-color: #7c747444;
    color: rgb(22, 24, 23);
    text-align: center;
    line-height: 50px;
    margin: 5px 0;
    transition: 0.3s;
    font-size: 1.5rem;
}

.social-icon:hover {
    background-color: rgb(32, 124, 185);
    transform: scale(1.1);
}