/* -------------------------
   Variables
------------------------- */
:root {
    --accent: #ff6f61;
    --accent-dark: #e74c3c;
    --gold: #d2b356;
    --muted: #6c757d;
    --bg: #f7f7f8;
    --navbar-height: 80px;
}

/* -------------------------
     Global Styles
  ------------------------- */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: var(--bg);
    color: #222;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h2 {
    font-weight: bold;
}

/* ------------------------- Navbar ------------------------- */
.custom-navbar {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: all .25s ease;
    z-index: 1100;
    height: var(--navbar-height);
}

.navbar-container {
    height: var(--navbar-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    /* reduce side gaps */
}

/* Logo */
.nav-logo {
    height: 130px;
    min-height: 75px;
    width: auto;
    display: inline-block;
    transition: transform .3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

/* Keep logo big in smaller screens */
@media (max-width: 991px) {
    .nav-logo {
        height: 70px;
    }
}

@media (max-width: 575px) {
    .nav-logo {
        height: 65px;
    }
}

/* Links */
.navbar-nav .nav-link {
    color: #222;
    font-weight: 600;
    margin-left: .75rem;
    position: relative;
    padding: .35rem .5rem;
    transition: color .25s ease;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 10%;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width .25s;
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-nav .nav-link:hover {
    color: var(--accent);
}

/* CTA button */
.btn-cta {
    background: var(--accent);
    color: #fff;
    border-radius: 30px;
    padding: 8px 18px;
    font-weight: 700;
    border: none;
    transition: background .2s, transform .12s;
}

.btn-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* Scrolled style */
.nav-scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* ------------------------- Mobile Right Menu ------------------------- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: #fff;
    box-shadow: -12px 0 30px rgba(0, 0, 0, 0.08);
    transition: right .28s ease;
    z-index: 1200;
}

.mobile-menu.show {
    right: 0;
}

.mobile-menu-inner {
    padding: 2rem;
    position: relative;
    height: 100%;
}

.close-mobile {
    position: absolute;
    right: 12px;
    top: 12px;
    border: none;
    background: transparent;
    font-size: 1.2rem;
}

.mobile-nav {
    list-style: none;
    padding: 1.6rem 0;
    margin: 0;
}

.mobile-nav li {
    margin: 1rem 0;
}

.mobile-link {
    color: #222;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
}

/* overlay click area to close menu on mobile (invisible element) */
.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1199;
    /* display: none; */
}

/* Fix: double dropdown icons issue */
.fa-bars:before {
    content: none !important
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: none !important;
}

/* -------------------------
     Hero Section
  ------------------------- */
.hero {
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.45)),
        url('images/banner.jpeg');
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
    padding-top: var(--navbar-height);
}

@media (max-width: 768px) {

    .hero {
        height: 0;
    }
}

.hero-inner {
    z-index: 2;
    max-width: 900px;
    padding: 30px;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.hero p.lead {
    color: #ffe9b3;
    margin-bottom: 1.4rem;
    font-weight: 500;
}

.hero .btn {
    min-width: 160px;
}

/* subtle animated accent */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 20%, rgba(255, 111, 97, 0.08), transparent 6%),
        radial-gradient(circle at 90% 80%, rgba(210, 179, 86, 0.06), transparent 9%);
    pointer-events: none;
}

/* -------------------------
     About Section
  ------------------------- */
.about-section {
    padding: 70px 0;
    background: #fff;
}

.about-image img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid transparent;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.about-image img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {

    .about-image img {
        width: 200px;
        height: 200px;
        margin-top: 20px;
    }
}

/* -------------------------
     Destinations
  ------------------------- */
.destinations-section {
    padding: 70px 0;
}

.destination-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    background: #fff;
}

.destination-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.destination-card:hover img {
    transform: scale(1.06);
}

.destination-card .overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
    color: #fff;
}

.destination-card h5 {
    margin: 0;
    font-weight: 700;
}

.destination-card p.small {
    margin: 4px 0 0;
    font-size: 0.85rem;
    color: #f0e9e9;
}

/* Explore Button */
.explore-button {
    background: var(--gold);
    color: #fff;
    border-radius: 26px;
    padding: 10px 26px;
    font-weight: 700;
    border: none;
}

.explore-button.btn:hover{
    border: 1px solid;
    border-color: var(--gold);
}

/* -------------------------
     Contact Section
  ------------------------- */
.contact-section {
    padding: 70px 0;
}

.contact-info {
    background: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control {
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #e8e8e8;
}

.contact-form {
    max-width: 650px;
    margin-left: auto;
}

/* -------------------------
     Footer
  ------------------------- */
.footer {
    background: #111;
    color: #cfcfcf;
}

.footer-logo {
    height: 64px;
    width: auto;
    display: inline-block;
    margin-bottom: 8px;
    border-radius: 50%;
    background: #fff;
}

.footer-title {
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #cfcfcf;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-social {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.footer-social i {
    font-size: 18px;
}

/* -------------------------
     Floating Instagram Button
  ------------------------- */
.floating-insta {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    text-decoration: none;
    font-size: 20px;
    transition: transform 0.18s ease;
}

.floating-insta:hover {
    transform: translateY(-6px);
}

@media (max-width: 768px) {
    .floating-insta {
        display: none;
    }
}

/* -------------------------
     Responsive Tweaks
  ------------------------- */
@media (max-width: 991px) {

    .contact-section h2 {
        text-align: center;
    }

    .contact-info {
        text-align: center;
    }
    .hero h1 {
        font-size: 2.4rem;
    }

    .destination-card img {
        height: 200px;
    }

    .contact-section {
        padding: 40px 0;
    }

    .contact-form {
        margin-top: 20px;
    }

    .mobile-menu {
        width: 280px;
    }

    .navbar-container {
        padding: 0 8px;
    }
}

@media (max-width: 575px) {
    .hero p.lead {
        font-size: 0.95rem;
    }

    .btn-cta {
        padding: 8px 14px;
    }
}

.floating-insta {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    text-decoration: none;
    font-size: 20px;
    transition: transform 0.18s ease;
}

.floating-insta:hover {
    transform: translateY(-6px);
}

@media (max-width: 768px) {
    .floating-insta {
        display: none;
    }
}