* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #fffbe0;
}

/* ---------- Header / Navbar ---------- */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 80px;
}

.logo span {
    font-size: 22px;
    font-weight: 600;
    color: #111;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    background: rgba(0,0,0,0.2);
    padding: 10px 20px;
    border-radius: 15px;
}

nav ul li a {
    color: #fdffd0;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #f39c12;
}

/* Dropdown */
nav ul li {
    position: relative;
}

.dropdown-menu {
    display: block;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 10px;
    min-width: 180px;
    padding: 10px 0;
    z-index: 10000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    width: 100%;
    padding: 10px 20px;
    color: #fdffd0;
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background: #f39c12;
    color: #111111;
}

.dropdown > a::after {
    content: "";
    display: inline-block;
    margin-left: 8px;
    width: 6px;
    height: 6px;
    border-right: 2px solid #fdffd0;
    border-bottom: 2px solid #fdffd0;
    transform: rotate(45deg) translateY(-4px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.dropdown:hover > a::after {
    transform: rotate(-135deg) translateY(-2px);
    border-color: #f39c12;
}

.tour-info .icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    vertical-align: middle;
}

.tour-info span {
    display: block;
    font-family: 'Montserrat', serif;
    font-size: 1.1rem;
    font-weight: bolder;
    color: #333; 
    margin-bottom: 10px;
}

/* ---------- Hero Section ---------- */
.tour-hero {
    position: relative;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background: center/cover no-repeat;
}

.tour-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.tour-hero h1 {
    position: relative;
    z-index: 2;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fdffd0;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.tour-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    font-size: 1.1rem;
    color: #5c432a;
}

.tour-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tour-overview {
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 0 20px;
    text-align: center;
    color: #7a6041;
}

.tour-overview p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ---------- Itinerary Section ---------- */
.itinerary {
    max-width: 1000px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.itinerary h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

/* Timeline layout */
.itinerary .day {
    position: relative;
    background: #fffbe0;
    border-left: 4px solid #f39c12;
    padding: 25px 30px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(154,117,50,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.itinerary .day:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(154,117,50,0.25);
}

.itinerary .day::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 25px;
    width: 20px;
    height: 20px;
    background: #f39c12;
    border-radius: 50%;
    border: 3px solid #fffbe0;
}

/* Day Titles */
.itinerary .day h3 {
    margin-bottom: 15px;
    color: #5c432a;
}

/* Day Content */
.itinerary .day p {
    color: #7a6041;
    line-height: 1.7;
}

/* ---------- Booking Section ---------- */
.booking {
    position: sticky;
    bottom: 20px;
    width: 90%;
    max-width: 400px;
    margin: 40px auto;
    text-align: center;
}

.booking button {
    background: #f39c12;
    color: #111;
    font-weight: 700;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(154,117,50,0.3);
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.booking button:hover {
    background: #fdffd0;
    color: #f39c12;
    transform: translateY(-3px);
}

/* ---------- Footer ---------- */
footer {
    text-align: center;
    padding: 10px;
    background: #5c432a;
    color: #fdffd0;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .timeline-item,
    .timeline-item:nth-child(even),
    .timeline-item:nth-child(odd) {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 60px;
        padding-right: 20px;
        margin-bottom: 40px;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item::before {
        left: 18px !important;
    }
}