/* =========================
   ROOT VARIABLES
========================= */
:root {
    --primary-color: #0b3d2e;
    --secondary-color: #ffc107;
    --text-color: #333;
    --light-color: #ffffff;
    --dark-overlay: rgba(0,0,0,.6);
    --shadow-soft: 0 10px 30px rgba(0,0,0,.15);
}

/* =========================
   GLOBAL
========================= */
body {
    font-family: 'Segoe UI', sans-serif;
    color: var(--text-color);
    background: var(--light-color);
}

/* =========================
   TOP BAR
========================= */
.top-bar {
    background: var(--primary-color);
    font-size: 14px;
    color: var(--light-color);
}

/* =========================
   NAVBAR
========================= */
.navbar {
    background: var(--light-color);
}

/* main menu */
.main-menu .nav-link {
    position: relative;
    font-weight: 500;
    padding: 8px 16px;
    color: var(--text-color) !important;
    transition: color .3s ease;
    display: inline-flex;
    align-items: center;
}

/* underline (use ::before to avoid caret conflict) */
.main-menu .nav-link::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: all .3s ease;
    transform: translateX(-50%);
}

/* hover + active */
.main-menu .nav-item:hover > .nav-link,
.main-menu .nav-link.active {
    color: var(--secondary-color) !important;
}

.main-menu .nav-item:hover > .nav-link::before,
.main-menu .nav-link.active::before {
    width: 70%;
}

/* keep bootstrap caret inline */
.dropdown-toggle::after {
    margin-left: .4rem;
    vertical-align: middle;
    transition: transform .3s ease;
}

/* rotate caret on hover */
.nav-item.dropdown:hover > .nav-link.dropdown-toggle::after {
    transform: rotate(180deg);
}

/* =========================
   DROPDOWN MENU
========================= */
@media (min-width: 992px) {

    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: all .3s ease;
        border: none;
        box-shadow: var(--shadow-soft);
    }

    .navbar .nav-item.dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* dropdown items */
.dropdown-menu .dropdown-item {
    padding: 10px 20px;
    transition: background .3s ease, padding-left .3s ease;
}

.dropdown-menu .dropdown-item:hover {
    background: var(--secondary-color) !important;
    color: #000 !important;
    padding-left: 28px;
}

/* =========================
   HERO SECTION
========================= */
.hero {
    height: 90vh;
    background:
        linear-gradient(var(--dark-overlay), var(--dark-overlay)),
        url('../images/hero.jpg') center / cover no-repeat;
}

.destinations-section a {
    text-decoration: none;
    color: inherit;
}

/* Card base */
.destination-card .card {
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 14px;
    height: 320px !important;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
    transition: transform .4s ease, box-shadow .4s ease;
}

/* Full image */
.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

/* Overlay */
.destination-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.25)
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: start;
    color: #fff;
    transition: background .4s ease;
    padding: 10px 15px;
}

/* Text styling */
.destination-card .card-overlay i {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 6px;
}

.destination-card .small-text {
    font-size: 14px;
    letter-spacing: 1px;
    opacity: .85;
    margin-bottom: 4px;
}

.destination-card .title {
    font-size: 28px;
    font-weight: 700;
}

/* Hover effects */
.destination-card:hover .card {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0,0,0,.25);
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-card:hover .card-overlay {
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.35)
    );
}
/* =========================
   FOOTER
========================= */
.footer {
    background: var(--primary-color);
    color: var(--light-color);
}

.footer a {
    color: var(--secondary-color);
    text-decoration: none;
    margin-right: 10px;
}

.footer a:hover {
    text-decoration: underline;
}

/* =========================
   MOBILE FIXES
========================= */
@media (max-width: 991px) {

    .navbar .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
    }

    .main-menu .nav-link::before {
        display: none;
    }
}
.hero-carousel {
    position: relative;
}

.carousel-item img {
    height: 90vh;
    object-fit: cover;
}

.carousel-caption {
    bottom: 20%;
    background: rgba(0,0,0,0.4);
    padding: 1rem 2rem;
    border-radius: 10px;
}

.carousel-caption h3 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffc107;
}

.carousel-caption p {
    font-size: 1.2rem;
    color: #fff;
}

/* TOUR CARD */
.tour-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,.1);
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0,0,0,.2);
}

/* TOUR IMAGE */
.tour-img {
    position: relative;
    overflow: hidden;
}

.tour-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform .5s ease;
}

.tour-card:hover .tour-img img {
    transform: scale(1.1);
}

/* MASK */
.item-mask {
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,.25);
    opacity: 0;
    transition: opacity .3s ease;
}

.tour-card:hover .item-mask {
    opacity: 1;
}

/* PRICE TAG */
.price-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #24c358;
    color: #fff;
    padding: 6px 12px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
}
 .image-icon{
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 22px;
    color: #fff;
 }
 .title-tag{
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 22px;
    color: #fff;
    text-align: justify;

 }
/* TOUR INFO */
.tour-info {
    padding: 20px;
    text-align: left;
}
.booking-box {
  position: sticky;
  top: 100px;
}

.booking-box h4 {
  font-weight: 600;
}

.booking-box .btn-success {
  background: #25D366;
  border: none;
}
#tourNameDisplay {
  background: #f8f9fa;
  font-weight: 600;
  cursor: not-allowed;
}

.tour-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 316px;
}

.tour-info p {
    font-size: 14px;
    color: #555;
    height: 65px;
    overflow: hidden;
}

/* META INFO */
.tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}
/* ===== PAGE HEADER ===== */
.page-header {
    background: url('../images/about.jpg') center/cover no-repeat;
    #padding: 120px 0;
    color: #fff;
    height: 680px;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    opacity: .9;
}

/* ===== ABOUT SECTION ===== */
.about-section h2 {
    font-weight: 700;
    margin-bottom: 15px;
}

.about-section p {
    color: #555;
    line-height: 1.8;
}

.about-image {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,.2);
}

.about-image img {
    width: 100%;
    transition: transform .6s ease;
}

.about-image:hover img {
    transform: scale(1.1);
}

/* List */
.about-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.about-list li {
    margin-bottom: 10px;
    font-weight: 500;
}

.about-list i {
    color: #ffc107;
    margin-right: 10px;
}

/* ===== WHY US ===== */
.why-us {
    background: #f8f9fa;
}

.why-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    transition: transform .4s ease;
}

.why-card i {
    font-size: 40px;
    color: #ffc107;
    margin-bottom: 15px;
}

.why-card:hover {
    transform: translateY(-10px);
}

/* ===== CTA ===== */
.about-cta {
    background: linear-gradient(135deg, #0b3d2e, #146c43);
    color: #fff;
    padding: 80px 0;
}

.about-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-cta p {
    font-size: 18px;
    margin-bottom: 25px;
}
:root {
    --primary: #ffc107;
    --dark: #0b3d2e;
    --text: #333;
}

/* ================= HERO ================= */
.city-hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.city-hero .hero-overlay {
    position: absolute;
    inset: 0;
    #background: linear-gradient(
        to right,
        rgba(0,0,0,.75),
        rgba(0,0,0,.35)
    );
}

.city-hero h1 {
    font-size: 64px;
    font-weight: 800;
}

.city-hero p {
    font-size: 22px;
    opacity: .9;
}

/* ================= INFO ================= */
.city-info h2 {
    font-weight: 700;
    margin-bottom: 15px;
}

.section-label {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
}

.city-image-box {
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 25px 50px rgba(0,0,0,.25);
}

.city-image-box img {
    width: 100%;
    transition: transform .6s ease;
}

.city-image-box:hover img {
    transform: scale(1.1);
}

.city-features {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    font-weight: 500;
}

.city-features i {
    color: var(--primary);
    margin-right: 6px;
}

/* ================= ATTRACTIONS ================= */
.city-attractions {
    background: #f8f9fa;
}

.attraction-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    transition: transform .4s ease, box-shadow .4s ease;
}

.attraction-card i {
    font-size: 38px;
    color: var(--primary);
    margin-bottom: 15px;
}

.attraction-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.attraction-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(0,0,0,.2);
}

/* ================= CTA ================= */
.city-cta {
    background: linear-gradient(135deg, var(--dark), #145c43);
    color: #fff;
    padding: 90px 0;
}

.city-cta h2 {
    font-size: 38px;
    font-weight: 700;
}

.city-cta p {
    font-size: 18px;
    opacity: .9;
    margin-bottom: 25px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .city-hero h1 {
        font-size: 42px;
    }
    .city-features {
        flex-direction: column;
    }
}
/* HERO */
.contact-hero {
    background: url("../images/contact-hero.jpg") center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.contact-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

/* INFO BOX */
.contact-box {
    background: #b28f3d;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: all .4s ease;
    color: #fff;
}

.contact-box i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-box:hover {
    transform: translateY(-10px);
}

/* FORM */
.form-control {
    border-radius: 10px;
    padding: 12px;
}

.btn-primary {
    background: var(--main-color);
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
}

.btn-primary:hover {
    background: #b28f3d;
}

/* MAP */
.map-box {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

.article-hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.article-hero .overlay {
    position: absolute;
    inset: 0;
    #background: rgba(0,0,0,0.6);
}
.pyramid-icon {
    font-size: 22px;
    color: #c9a14a;
}

.article-content h2 {
    margin-top: 30px;
    font-weight: 700;
}

.article-content p {
    line-height: 1.8;
    color: #444;
}

.article-content blockquote {
    background: #f8f9fa;
    border-left: 5px solid #c9a14a;
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
}

.article-sidebar {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.article-sidebar ul {
    list-style: none;
    padding: 0;
}

.article-sidebar li {
    margin-bottom: 12px;
}

.article-sidebar i {
    color: #c9a14a;
    margin-right: 8px;
}
/* BANNER */
.article-banner {
    height: 55vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.article-banner .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
}

/* IMAGE CARD */
.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.image-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform .5s ease;
}

.image-card:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    color: #fff;
}

/* ICON LIST */
.list-icon {
    list-style: none;
    padding: 0;
}

.list-icon li {
    margin-bottom: 10px;
    font-size: 16px;
}

.list-icon i {
    color: #c9a14a;
    margin-right: 8px;
}
:root {
    --main-color: #c9a14a;
}

/* HERO */
.tour-hero {
    height: 55vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.tour-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
}

/* LEFT CONTENT */
.tour-features {
    list-style: none;
    padding: 0;
}

.tour-features li {
    margin-bottom: 10px;
    font-size: 16px;
}

.tour-features i {
    color: var(--main-color);
    margin-right: 8px;
}

/* SIDEBAR */
.tour-details-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    position: sticky;
    top: 100px;
}

.tour-details-box h4 {
    margin-bottom: 20px;
    font-weight: 700;
}

.tour-details-box ul {
    list-style: none;
    padding: 0;
}

.tour-details-box li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 15px;
}

.tour-details-box i {
    color: var(--main-color);
    margin-right: 6px;
}

