
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    color: #1C1917;
    line-height: 1.6;
    background: #F7F5F0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    line-height: 1.2;
    color: #1C1917;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.overline {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #D1A354;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.125rem;
    color: #57534E;
    max-width: 800px;
    margin: 0 auto;
}

.small {
    font-size: 0.875rem;
    color: #78716C;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
    border: none;
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: #4A0E17;
    color: white;
}

.btn-primary:hover {
    background: #2E3E34;
}

.btn-gold {
    background: #D1A354;
    color: #1C1917;
}

.btn-gold:hover {
    background: #4A0E17;
    color: white;
}

.btn-dark {
    background: #2E3E34;
    color: white;
}

.btn-dark:hover {
    background: #4A0E17;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #1C1917;
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: #4A0E17;
}

.btn-small {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #4A0E17;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 17px;
    color: #57534E;
    transition: color 0.3s;
}
.nav-link.mobile {
    font-size: 20px;
   
}

.nav-link:hover,
.nav-link.active {
    color: #4A0E17;
    border-bottom: 2px solid #4A0E17;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #4A0E17;
    transition: 0.3s;
}

/* Hero Section */
/* .hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1619796696638-f64ed3dac3d5?w=1920&q=80') center/cover; 
        background: url('https://cdn.traveltibetchina.com/pic/himalaya-02.webp') center/cover;
       
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.3), transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
}

.hero-title {
    color: white;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
} */

/* Sections */
.section {
    padding: 6rem 0;
}

.bg-light {
    background: #F7F5F0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

/* Page Header */
.page-header {
    /* padding: 10rem 1.5rem 6rem; */
    margin-top: 80px;
}

/* Grids */
.rooms-grid,
.adventure-grid,
.testimonials-grid,
.values-grid {
    display: grid;
    gap: 2rem;
}

.rooms-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.adventure-grid,
.testimonials-grid,
.values-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Room Cards */
.room-card {
    background: white;
    border: 1px solid #E7E5E4;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.room-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.room-image {
    overflow: hidden;
    height: 250px;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-content {
    padding: 2rem;
}

.room-content h3 {
    margin-bottom: 0.5rem;
}

.room-content p {
    color: #57534E;
    margin-bottom: 1.5rem;
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #E7E5E4;
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: #4A0E17;
}

.price small {
    font-size: 1rem;
    color: #78716C;
}

/* Adventure Cards */
.adventure-card {
    text-align: center;
    padding: 2rem;
    border: 1px solid #E7E5E4;
    transition: box-shadow 0.3s;
}

.adventure-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.adventure-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: #4A0E17;
    color: white;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.adventure-card h3 {
    margin-bottom: 1rem;
}

.adventure-card p {
    color: #57534E;
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 2rem;
    border: 1px solid #E7E5E4;
}

.stars {
    color: #D1A354;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: #57534E;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    display: block;
    font-weight: 700;
    color: #1C1917;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: #78716C;
}

/* Location */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
}

.info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.location-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Two Column Grid */
.two-col-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.two-col-grid.reverse .col-image {
    order: 2;
}

.two-col-grid.reverse .col-content {
    order: 1;
}

.col-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.col-content {
    padding: 2rem;
}

.col-content h2 {
    margin-bottom: 1.5rem;
}

.col-content p {
    color: #57534E;
    margin-bottom: 1rem;
}

/* Values */
.value-card {
    background: white;
    text-align: center;
    padding: 2rem;
    border: 1px solid #E7E5E4;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Adventure Details */
.adventure-detail {
    margin-bottom: 4rem;
}

.adventure-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.features-grid span {
    color: #57534E;
    font-size: 0.875rem;
}

/* Room Detail */
.room-detail {
    margin-bottom: 6rem;
}

.room-info {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
}

.room-info span {
    color: #57534E;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin: 1rem 0 2rem;
}

.amenities-grid span {
    color: #57534E;
    font-size: 0.875rem;
}

.room-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #E7E5E4;
}

/* Features Grid */
.features-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-box {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: #4A0E17;
    color: white;
    border-radius: 50%;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Gallery */
.gallery-filter {
    padding: 3rem 0;
    background: white;
    border-bottom: 1px solid #E7E5E4;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    background: #F5F5F4;
    color: #57534E;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #4A0E17;
    color: white;
    box-shadow: 0 4px 15px rgba(74, 14, 23, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.gallery-item.hidden {
    display: none;
}

.gallery-item.tall {
    height: 450px;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: white;
    margin: 0;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 2rem;
}

.info-block {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: #4A0E17;
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.info-block h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.info-block p {
    color: #57534E;
}

.info-block a {
    color: #4A0E17;
    transition: color 0.3s;
}

.info-block a:hover {
    color: #D1A354;
}

.adventure-box {
    background: #F7F5F0;
    padding: 1.5rem;
    border: 1px solid #E7E5E4;
    margin-top: 2rem;
}

.adventure-box h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.adventure-box p {
    color: #57534E;
    margin-bottom: 1rem;
}

.adventure-box ul {
    list-style: none;
}

.adventure-box ul li {
    color: #57534E;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: #1C1917;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    background: white;
    border: 1px solid #D6D3D1;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    color: #1C1917;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D1A354;
    box-shadow: 0 0 0 3px rgba(209, 163, 84, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #D1FAE5;
    color: #065F46;
    display: block;
}

.form-message.error {
    background: #FEE2E2;
    color: #991B1B;
    display: block;
}

/* Info Boxes */
.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-box {
    background: white;
    padding: 2rem;
    border: 1px solid #E7E5E4;
}

.info-box h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.info-box p {
    color: #57534E;
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    background: #4A0E17;
    padding: 6rem 1.5rem;
    color: white;
}

.cta-section h2,
.cta-section .lead {
    color: white;
}

.cta-section .lead {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #1C1917;
    color: #A8A29E;
    padding: 6rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.75rem;
    font-style: italic;
    color: #78716C;
}

.footer-col h4,
.footer-col h5 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-col h5 {
    font-size: 0.875rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.footer-col ul li a:hover {
    color: #D1A354;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #44403C;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #78716C;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-container .btn-primary {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .two-col-grid.reverse .col-image {
        order: 1;
    }

    .two-col-grid.reverse .col-content {
        order: 2;
    }

    .gallery-item.wide {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .features-grid,
    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .room-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}



.page-header {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
 
     background: url('../images/bharmour.png') center/cover;
    overflow: hidden;
}
.page-header.gallery {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    background:url('../images/5-Places-in-Shoja-for-the-wanderer-in-you-Hero-Image.avif') center/cover;
    overflow: hidden;
}
.page-header h1{
    color:#fff;
 font-size: 40px;

}
.page-header .overline{
   font-size: 20px;
}
.page-header .lead{
   color:#fff;
   font-size: 16px;
}

.page-header.rooms {
       position: relative;
    height:320px;
    display: flex;
    align-items: center;
    background: url('../images/newimage1.png') center / cover;
    overflow: hidden;
}
.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
}

.hero .carousel,
.hero .carousel-inner,
.hero .carousel-item{
    height:100vh;
}

.hero .carousel-item img{
    width:100%;
    height:100vh;
    object-fit:cover;

    /* Premium Zoom Effect */
    transform:scale(1);
    transition:transform 8s ease;
}

.hero .carousel-item.active img{
    transform:scale(1.12);
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to right,
        rgba(0,0,0,.65),
        rgba(0,0,0,.35),
        rgba(0,0,0,.15));
}

.hero-content{
    position:absolute;
    top:50%;
    left:7%;
    transform:translateY(-50%);
    z-index:10;
    text-align: center;
   
}

.overline{
    color:#D4AF37;
    font-size:18px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.hero-title{
    color:#fff;
    font-size:72px;
    line-height:1.1;
    font-weight:700;
    margin-bottom:25px;
}

.hero-subtitle{
    color:#f5f5f5;
    font-size:20px;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    justify-content: center;
}

.carousel-control-prev,
.carousel-control-next{
    width:70px;
}

.carousel-indicators{
    bottom:35px;
}

.carousel-indicators button{
    width:12px;
    height:12px;
    border-radius:50%;
}

@media(max-width:768px){

.hero-title{
    font-size:42px;
}

.hero-subtitle{
    font-size:16px;
}

.hero-content{
    left:25px;
    right:25px;
}

.hero-buttons{
    flex-direction:column;
}
}
.manimahesh-section{
    background:#f8f7f3;
}

.manimahesh-section img{
    height:520px;
    object-fit:cover;
}

.section-tag{
       color: #4A0E17;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-title{
    font-size:46px;
    font-weight:700;
    margin-bottom:25px;
    color:#222;
}

.section-title span{
        color: #4A0E17;
}

.section-text{
    font-size:17px;
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
}

.feature-list{
    list-style:none;
    padding:0;
}

.feature-list li{
    margin-bottom:15px;
    font-size:17px;
    color:#333;
    font-weight:500;
}

.btn-gold{
    background:#4A0E17;
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    text-decoration:none;
    transition:.3s;
}

.btn-gold:hover{
    background:#4A0E17;
    color:#fff;
}

@media(max-width:768px){

.section-title{
    font-size:32px;
}

.manimahesh-section img{
    height:320px;
}

}


