:root {
    --warning-color: #006d77;
    --secondary-color: #ffb703;
    --accent-color: #023047;
}

body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
}

.custom-navbar {
    background-color: #ffffff;
}

/* Mega Menu Styling */
.mega-menu {
    background-color: #f2f6fc;
    border-top: 3px solid #5e72e4;
}

.mega-menu h6 {
    font-weight: 600;
    color: #2d2f3a;
    margin-bottom: 0.5rem;
}

.mega-menu ul li a {
    display: block;
    padding: 6px 0;
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mega-menu ul li a:hover {
    color: #5e72e4;
}

.btn-custom {
    background-color: #5e72e4;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 10px 30px;
    transition: 0.3s ease;
}

.btn-custom:hover {
    background-color: #324cdd;
}

/* Ensure Mega Menu is Full Width */
.navbar .dropdown-menu.mega-menu {
    left: 0 !important;
    right: 0 !important;
    width: 100vw;
    top: 100%;
}

/* Remove container padding when mega menu shows full width */
.dropdown-menu.mega-menu .row {
    margin-left: 0;
    margin-right: 0;
}

/* Responsive Column Padding */
.dropdown-menu.mega-menu .col-md-3 {
    padding-left: 20px;
    padding-right: 20px;
}

/* Hover dropdown for desktop */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .navbar .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }

    .navbar .dropdown:hover .dropdown-menu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0px);
    }
}


/*Top Cruise Destination*/
.destination-card {
    position: relative;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.destination-card:hover img {
    transform: scale(1.05);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 10px;
}

.destination-overlay h6 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
}

.destination-overlay .btn {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
    margin-top: 10px;
}

.destination-card:hover .destination-overlay .btn {
    transform: translateY(0);
    opacity: 1;
}