/* --- Variables & Reset --- */
:root {
    --western-red: #A30000;
    --dark-charcoal: #1a1a1a;
    --western-gold: #D4AF37;
    --parchment: #fdfaf6;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--parchment);
    color: var(--dark-charcoal);
    line-height: 1.8;
    overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3, h4, .navbar-brand {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

p { font-size: 18px; }

/* --- Navigation (Logo Resized & Centered Toggle) --- */
.navbar {
    border-bottom: 5px solid var(--western-red);
    background: var(--white);
    padding: 0.1rem 0; /* As requested */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Forces Navbar and Hamburger to align vertically */
.navbar > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand img {
    max-height: 130px; /* Recalibrated from humungus to readable */
    width: auto;
}

.nav-link {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark-charcoal) !important;
    margin: 0 15px;
}

.nav-link:hover, .nav-link.active {
    color: var(--western-red) !important;
}

.navbar-toggler {
    border: 2px solid var(--western-red);
    border-radius: 0;
}

/* --- THE HERO (Vignette Left / Parallax) --- */
.hero-home {
    background-image: url('../img/hero-main.png'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    border-bottom: 12px solid var(--western-red);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 45%, rgba(0,0,0,0) 75%);
}

.hero-text-side {
    position: relative;
    z-index: 5;
    color: white;
    max-width: 650px;
    padding-left: 5%;
}

.hero-text-side h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.5);
}

/* --- Dark Headers (Mirror Packages & Contact) --- */
.header-dark {
    background-color: var(--dark-charcoal);
    color: var(--white);
    padding: 70px 0;
    border-bottom: 8px solid var(--western-red);
    text-align: center;
}

/* --- Reveal Animations --- */
.reveal { opacity: 0; transform: translateY(40px); transition: 1s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* --- Hard Shadow Elements --- */
.btn-western {
    background-color: var(--western-red);
    color: white;
    border-radius: 0;
    padding: 15px 40px;
    font-weight: 700;
    border: 3px solid var(--dark-charcoal);
    box-shadow: 6px 6px 0px var(--dark-charcoal);
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-western:hover {
    transform: translate(3px, 3px);
    box-shadow: 0px 0px 0px var(--dark-charcoal);
    background: var(--dark-charcoal);
}

.dest-card {
    background: white;
    padding: 50px 30px;
    border: 2px solid var(--dark-charcoal);
    text-decoration: none;
    color: inherit;
    display: block;
    box-shadow: 8px 8px 0px rgba(0,0,0,0.05);
    transition: 0.4s;
}

.dest-card:hover {
    transform: translateY(-10px);
    border-color: var(--western-red);
    color: var(--western-red);
}

/* --- THE FRAMED LAYOUT FIX (Padding for images) --- */
section { padding: 100px 0; }

.package-row { 
    background: white; 
    margin-bottom: 80px; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    /* SCROLL OFFSET FIX */
    scroll-margin-top: 160px; 
}

.contained-img-wrapper {
    padding: 45px; /* Creates the "framed" white space above/below images */
}

.contained-img-wrapper img {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
    height: auto;
}

.price-tag { 
    background: var(--dark-charcoal); 
    color: var(--western-gold); 
    padding: 8px 25px; 
    font-weight: bold; 
    border-left: 8px solid var(--western-red); 
    display: inline-block; 
    margin-bottom: 20px; 
}

/* --- Contact & Flare --- */
.contact-meta-label { font-weight: 700; font-size: 0.85rem; letter-spacing: 2px; color: var(--western-red); border-bottom: 2px solid var(--western-red); display: inline-block; margin-bottom: 12px; }
.western-divider:after { content: '★ ★ ★'; display: block; letter-spacing: 15px; color: var(--western-red); margin: 20px 0; font-size: 1.2rem; }

/* --- Footer (Sand/Parchment) --- */
footer {
    background-color: #E8DCC4; 
    color: var(--dark-charcoal); 
    padding: 80px 0 40px 0;
    border-top: 10px solid var(--western-red);
    text-align: center;
}

.footer-logo {
    height: 140px; /* Balanced footer logo */
    width: auto;
    margin-bottom: 30px;
}

footer a { color: var(--western-red); text-decoration: none; font-weight: 700; margin: 0 15px; }

/* Mobile Tweaks */
@media (max-width: 991px) {
    .navbar-brand img { max-height: 80px; }
    .hero-text-side h1 { font-size: 2.5rem; }
    .contained-img-wrapper { padding: 25px; }
    .package-row { scroll-margin-top: 110px; }
}