/* ----------------------------------
   GLOBAL STYLES
---------------------------------- */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}

/* Primary Colors */
:root {
    --primary: #5a5afc;
    --primary-dark: #4949d7;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn,
.btn-outline-primary,
.btn-outline-secondary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn:hover {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
}


/* ----------------------------------
   NAVBAR
---------------------------------- */
.navbar {
    background-color: #000 !important;
    transition: padding 0.3s ease-in-out, background-color 0.3s ease;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
}

.navbar.scrolled {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.navbar-brand {
    font-size: 1.4rem;
    transition: font-size 0.3s ease;
}

.navbar.scrolled .navbar-brand {
    font-size: 1.65rem;
}

.nav-link {
    font-weight: 500;
    transition: font-size 0.3s ease;
}



/* ----------------------------------
   VIDEO HERO BANNER (index.php)
---------------------------------- */
.video-banner {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 900px;
    text-align: center;
    transform: translate(-50%, -50%) !important;
    color: white;
    text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.7);
    padding: 0 15px;
}



/* ----------------------------------
   INDEX PAGE SECTIONS
---------------------------------- */
.section-title {
    font-weight: 700;
}

.section-subtitle {
    color: #000;
    margin-bottom: 2rem;
}

/* Services Cards */
.service-card {
    border: none;
    border-radius: 0.75rem;
}

.service-card i {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.service-card .card-body {
    padding: 1.5rem;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary), var(--primary));
    color: #fff;
    padding: 3rem 0;
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
}

.stat-label {
    opacity: 0.9;
}

/* Testimonials */
.testimonial-card {
    border-radius: 0.75rem;
    border: none;
}

.testimonial-quote {
    font-style: italic;
}

/* Newsletter Form */
.newsletter-section {
    background-color: #fff;
    border-radius: 0.75rem;
    padding: 3rem;
}



/* ----------------------------------
   TREKKING PAGE
---------------------------------- */
.hero-trek {
    background: url("../img/kang1f.jpg") center center/cover no-repeat;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: relative;
    text-align: center;
    text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-trek::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-trek .content {
    position: relative;
    z-index: 2;
}

/* Trekking Package Cards */
.package-card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform .3s;
}

.package-card img {
    height: 230px;
    width: 100%;
    object-fit: cover;
}

.package-card:hover {
    transform: translateY(-5px);
}



/* ----------------------------------
   HOMESTAY PAGE
---------------------------------- */
.hero-home {
    background: url("../img/home.jpg") center center/cover no-repeat;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    color: #fff;
    text-shadow: 0px 3px 10px rgba(0,0,0,0.7);
}

.hero-home::after {
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
}

.hero-home .content {
    position: relative;
    z-index: 2;
}

/* Homestay Cards */
.stay-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform .3s ease;
}

.stay-card:hover {
    transform: translateY(-7px);
}

.stay-card img {
    height: 230px;
    width: 100%;
    object-fit: cover;
}



/* ----------------------------------
   AUTH PAGES (LOGIN / SIGNUP)
---------------------------------- */
.login-card,
.signup-card {
    max-width: 450px;
    margin: auto;
    border-radius: 15px;
    overflow: hidden;
}

.login-header,
.signup-header {
    background: var(--primary);
    padding: 1.3rem;
    color: #fff;
    text-align: center;
}

.login-body,
.signup-body {
    background: #fff;
    padding: 2rem;
}

.form-control {
    height: 48px;
    border-radius: 8px;
}

/* ----------------------------------
   FOOTER
---------------------------------- */
.footer {
    background: #000;
    color: #fff;
    padding: 40px 0;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

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