:root {
    --forest: #1a2e1a;
    --moss: #2d4a2d;
    --sage: #5a7a52;
    --gold: #e5ae14;
    --amber: #c9a84c;
    --gold-light: #e8c97a;
    --cream: #f5f0e8;
    --warm-white: #faf8f3;
    --snow: #faf8f3;
    --mist: #d4cfc4;
    --deep: #0d1a0d;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background: var(--deep);
    color: var(--cream);
    overflow-x: hidden;
}

p {
    font-family: 'Cormorant Garamond', serif;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: .35;
}

/* ── NAVBAR ── */
.navbar-custom {
    background: rgba(13, 26, 13, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    padding: 0.6rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand-text {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    letter-spacing: 0.18em;
    color: var(--gold) !important;
    text-transform: uppercase;
}

.navbar-brand-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    color: var(--mist);
    display: block;
    text-transform: uppercase;
}

.nav-link-custom {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff !important;
    padding: 0.4rem 1rem !important;
    transition: color 0.3s;
    position: relative;
    text-decoration: none;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}

.nav-link-custom:hover {
    color: var(--gold) !important;
}

.nav-link-custom:hover::after {
    transform: scaleX(1);
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background:
        linear-gradient(160deg, rgba(13, 26, 13, 0.72) 0%, rgba(26, 46, 26, 0.55) 40%, rgba(13, 26, 13, 0.85) 100%),
        url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1800&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 60%, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    letter-spacing: 0.22em;
    color: var(--gold-light);
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--warm-white);
    opacity: 0;
    animation: fadeUp 0.9s 0.5s forwards;
}

.hero-title span {
    color: var(--gold);
    font-style: italic;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    color: var(--mist);
    font-weight: 300;
    letter-spacing: 0.04em;
    max-width: 520px;
    opacity: 0;
    animation: fadeUp 0.9s 0.7s forwards;
}

.hero-mission {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gold-light);
    border-left: 2px solid var(--gold);
    padding-left: 1.2rem;
    opacity: 0;
    animation: fadeUp 0.9s 0.9s forwards;
}

.btn-gold {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.85rem 2.4rem;
    transition: all 0.35s;
    opacity: 0;
    animation: fadeUp 0.9s 1.1s forwards;
}

.btn-gold:hover {
    background: var(--gold);
    color: var(--deep);
}

.btn-solid-gold {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: var(--gold);
    border: 1px solid var(--gold);
    color: var(--deep);
    padding: 0.85rem 2.4rem;
    transition: all 0.35s;
    opacity: 0;
    animation: fadeUp 0.9s 1.2s forwards;
}

.btn-solid-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--deep);
}

/* scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeIn 1s 1.5s forwards;
}

.scroll-hint span {
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    color: var(--mist);
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollDrop 1.8s 2s infinite;
}

/* ── SECTION SHARED ── */
.section-label {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.78rem;
    letter-spacing: 0.35em;
    color: var(--gold);
    text-transform: uppercase;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--warm-white);
}

.section-title span {
    color: var(--gold);
    font-style: italic;
}

.divider-gold {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 1.2rem 0;
}

/* ── DESTINATIONS ── */
.destinations-section {
    background: var(--forest);
    padding: 6rem 0;
    position: relative;
}

.destinations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.dest-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.15);
    cursor: pointer;
    transition: transform 0.4s, box-shadow 0.4s;
    background: var(--moss);
}

.dest-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.dest-card-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s;
    filter: saturate(0.8) brightness(0.85);
}

.dest-card:hover .dest-card-img {
    transform: scale(1.06);
    filter: saturate(1) brightness(0.9);
}

.dest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 26, 13, 0.9) 0%, transparent 55%);
}

.dest-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
}

.dest-card-tag {
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-family: 'Cinzel', serif;
}

.dest-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--warm-white);
    line-height: 1.2;
}

.dest-card-desc {
    font-size: 0.85rem;
    color: var(--mist);
    margin-top: 0.4rem;
    font-style: italic;
}

.dest-card-arrow {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201, 168, 76, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    opacity: 0;
    transform: translateY(-4px);
    transition: all 0.3s;
}

.dest-card:hover .dest-card-arrow {
    opacity: 1;
    transform: translateY(0);
}

/* ── FEATURES / TOURS ── */
.tours-section {
    background: var(--deep);
    padding: 6rem 0;
}

.tour-item {
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    padding: 2.2rem 0;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: background 0.3s;
}

.tour-item:last-child {
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.tour-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(201, 168, 76, 0.18);
    line-height: 1;
    min-width: 60px;
}

.tour-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--warm-white);
}

.tour-desc {
    font-size: 0.95rem;
    color: var(--mist);
    font-style: italic;
    margin-top: 0.3rem;
}

.tour-badge {
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.25rem 0.8rem;
    white-space: nowrap;
    align-self: center;
    margin-left: auto;
}

/* ── FOOTER ── */
.footer {
    background: var(--deep);
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    padding: 3rem 0 1.5rem;
}

.footer-brand {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
}

.footer-tagline {
    font-style: italic;
    color: var(--mist);
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

.footer-link {
    color: var(--mist);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-link:hover {
    color: var(--gold);
}

.footer-heading {
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    font-size: 0.78rem;
    color: rgba(212, 207, 196, 0.5);
    text-align: center;
}

/* ── SOCIAL ICONS ROW ── */
.social-row a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--mist);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    margin-right: 0.5rem;
}

.social-row a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scrollDrop {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* rotate badge */
.rotated-badge {
    display: inline-block;
    border: 1px solid var(--gold);
    padding: 0.5rem 1.2rem;
    transform: rotate(-2deg);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold);
    font-size: 1.05rem;
    background: rgba(201, 168, 76, 0.06);
}

/* hamburger */
.navbar-toggler {
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28201,168,76,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.why-us h2 {
    font-weight: bold;
    color: #000;
}

.why-us p {
    color: #000;
    font-size: clamp(1rem, 2.5vw, 1.35rem);
}




/* ── BOTTOM TAGLINE ── */
.bottom-tagline {
    background: var(--moss);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bottom-tagline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c4972a' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.bottom-tagline-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 4vw, 2.8rem);
    font-style: italic;
    font-weight: 400;
    color: var(--snow);
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.bottom-tagline-text strong {
    color: var(--amber);
    font-weight: 700;
}







/* Destination page  */

/* SECTION */
.city-section {
    background: #f8f9fa;
}

/* CARD */
.city-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.city-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

/* IMAGE */
.city-img {
    height: 160px;
    background-size: cover;
    background-position: center;
}

/* SAMPLE IMAGES */
.img1 {
    background-image: url('https://images.unsplash.com/photo-1544735716-392fe2489ffa?w=800&q=80');
}

.img2 {
    background-image: url('https://images.unsplash.com/photo-1588666309990-d68f08e3d4a6?w=800&q=80');
}

.img3 {
    background-image: url('https://images.unsplash.com/photo-1593693411515-c20261bcad6e?w=800&q=80');
}

.img4 {
    background-image: url('https://images.unsplash.com/photo-1570693111144-5f0f88a7c52f?w=800&q=80');
}

.img5 {
    background-image: url('https://images.unsplash.com/photo-1604578762246-41134e37f9cc?w=800&q=80');
}

.img6 {
    background-image: url('https://images.unsplash.com/photo-1613395877344-13d4a8e0d6b5?w=800&q=80');
}

/* NAME */
.city-name {
    padding: 15px;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a3c2f;
}






/* SECTION */
.tour-section {
    background: #ffffff;
}

/* CARD */
.tour-card {
    position: relative;
    height: 280px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.4s ease;
}

.tour-card:hover {
    transform: translateY(-8px);
}

/* Overlay */
.tour-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
}

/* Content */
.tour-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #fff;
    z-index: 2;
}

.tour-content h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.tour-days {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

/* Sample Images */
.img1 { background-image: url('https://images.unsplash.com/photo-1544735716-392fe2489ffa?w=800&q=80'); }
.img2 { background-image: url('https://images.unsplash.com/photo-1588666309990-d68f08e3d4a6?w=800&q=80'); }
.img3 { background-image: url('https://images.unsplash.com/photo-1593693411515-c20261bcad6e?w=800&q=80'); }
.img4 { background-image: url('https://images.unsplash.com/photo-1604578762246-41134e37f9cc?w=800&q=80'); }
.img5 { background-image: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?w=800&q=80'); }
.img6 { background-image: url('https://images.unsplash.com/photo-1613395877344-13d4a8e0d6b5?w=800&q=80'); }





/* SIMPLE COUNTRY SECTION */

.country-section {
    padding: 120px 0;
    background: #ffffff;
}

.country-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #111;
    margin-bottom: 40px;
}

.country-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 25px;
}






