/* ==================================
   GLOBAL STYLES
================================== */

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f9fafb;
    color: #222;
}

.container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

/* ==================================
   HEADER
================================== */

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #eee;
}

.header-inner{
    max-width:1300px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:15px 25px;
}

.logo-area img{
    height:70px;
    width:auto;
    display:block;
}

.main-nav{
    display:flex;
    gap:25px;
}

.main-nav a{
    text-decoration:none;
    font-weight:600;
    color:#0f7a4a;
}

.header-info a{
    text-decoration:none;
    font-weight:600;
    color:#0f7a4a;
}

/* ==================================
   HERO SECTION
================================== */

.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    background-image: url('/assets/images/nepal.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.65)
    );
}

.hero-content {
    position: relative;
    max-width: 900px;
    padding: 20px;
}

.hero h1 {
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
    font-size: 48px;
    margin: 0;
    font-weight: 700;
}

.hero p {
    margin-top: 20px;
    font-size: 20px;
    line-height: 1.6;
}

/* ==================================
   HERO BUTTONS
================================== */

.hero-buttons {
    margin-top: 40px;
}

.btn-primary {
    background: #ff6b35;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    margin-right: 15px;
}

.btn-primary:hover {
    background: #e65a28;
}

.btn-secondary {
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: black;
}

/* ==================================
   GRID & PACKAGE CARDS
================================== */

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
}

.card {
    background: white;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* ==================================
   BUTTONS
================================== */

.button {
    background:#0f7a4a;
    color:white;
    padding:10px 18px;
    border-radius:8px;
    text-decoration:none;
    display:inline-block;
    font-size:14px;
    font-weight:600;
    transition:all 0.25s ease;
}

.button:hover {
    background:#0c5e38;
    transform:translateY(-2px);
}

/* ==================================
   SECTION TITLE
================================== */

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
}

/* ==================================
   FOOTER
================================== */

.site-footer {
    background: linear-gradient(135deg, #0f7a4a, #0c5e38);
    color: white;
    padding: 70px 20px 0;
    margin-top: 80px;
}

.footer-inner {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 50px;
}

.footer-col h2 {
    margin-top: 0;
    font-size: 22px;
}

.footer-col h3 {
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-col p {
    font-size: 14px;
}

.footer-col a {
    color: white;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    background: rgba(0,0,0,0.15);
}

/* ==================================
   MOBILE RESPONSIVE
================================== */

@media (max-width:768px){

.header-inner{
    flex-direction:column;
    text-align:center;
    gap:12px;
}

.logo-area img{
    height:60px;
}

.main-nav{
    justify-content:center;
    gap:18px;
}

.header-info{
    font-size:14px;
}

/* HERO */

.hero h1{
    font-size:28px;
}

.hero p{
    font-size:16px;
}

/* HERO BUTTONS */

.hero-buttons{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:15px;
}

.btn-primary,
.btn-secondary{
    width:80%;
    text-align:center;
}

/* PACKAGE GRID */

.grid{
    grid-template-columns:1fr;
}

.card img{
    height:180px;
}

}
/* ===============================
   TEAM PAGE
================================ */

.team-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
}

.team-card h3 {
    margin-top: 15px;
}
/* ===============================
   TEAM CARDS PREMIUM
================================ */

.team-card {
    text-align: center;
}

.team-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: top center; /* 👈 important fix */
    border-radius: 14px;
    transition: 0.3s ease;
}
.team-card:hover img {
    transform: scale(1.05);
}

.team-card h3 {
    margin-top: 15px;
    font-size: 20px;
}

.team-card p {
    font-size: 14px;
    color: #555;
}
/* ===============================
   PROJECT HERO (UPGRADED)
================================ */

.project-hero {
    position: relative;
    height: 80vh;
    background: url('/assets/images/zipline.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.4)
    );
}

.project-content {
    position: relative;
    max-width: 800px;
}

.project-content h1 {
    font-size: 52px;
    margin: 0;
    font-weight: 700;
}

.subtitle {
    margin-top: 10px;
    font-size: 20px;
    opacity: 0.9;
}

/* Highlights */
.project-highlights {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 25px;
    font-size: 16px;
}
/* Mobile */
@media (max-width: 768px) {
    .project-content h1 {
        font-size: 28px;
    }
}