:root{
    --primary:#c89b3c;
    --secondary:#8b5e34;
    --dark:#1f1a17;
    --light:#f8f4ee;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}
/* HERO */

.blog-hero{
    height:450px;
    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url('https://www.sandroutesresort.com/img/deluxe-swiss-camp.jpg') no-repeat center center /cover;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:20px;
}

.blog-hero-content h1{
    color:#fff;
    font-family:'Playfair Display',serif;
    font-size:55px;
    margin-bottom:15px;
}

.blog-meta{
    color:#ddd;
    justify-content:center;
}

/* MAIN SECTION */

.blog-section{
    padding:70px 0;
}

.blog-wrapper{
    display:grid;
    grid-template-columns:2fr 380px;
    gap:40px;
    align-items:start;
}

/* BLOG CONTENT */

.blog-content{
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.blog-content img{
    border-radius:12px;
    margin-bottom:25px;
}

.blog-content h2{
    font-family:'Playfair Display',serif;
    color:var(--dark);
    margin:25px 0 15px;
}

.blog-content p{
    margin-bottom:18px;
}

blockquote{
    background:var(--light);
    padding:25px;
    border-left:4px solid var(--primary);
    margin:25px 0;
    font-style:italic;
}

/* SIDEBAR */

.sidebar{
    position:sticky;
    top:20px;
}

.widget{
    background:#fff;
    border-radius:15px;
    padding:25px;
    margin-bottom:25px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.widget-title{
    font-family:'Playfair Display',serif;
    color:var(--dark);
    margin-bottom:20px;
    font-size:24px;
}

/* BOOKING FORM */

.booking-form{
    background:var(--dark);
    color:#fff;
}

.booking-form .widget-title{
    color:#fff;
}

.form-group{
    margin-bottom:15px;
}

.form-control{
    width:100%;
    padding:12px 15px;
    border:none;
    border-radius:8px;
    font-size:14px;
    outline:none;
}

textarea.form-control{
    resize:none;
    height:100px;
}

.btn-book{
    background:var(--primary);
    color:#fff;
    border:none;
    padding:14px;
    border-radius:8px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.btn-book:hover{
    background:var(--secondary);
}

/* RECENT POSTS */

.recent-posts{
    list-style:none;
}

.recent-posts li{
    border-bottom:1px solid #eee;
    padding:12px 0;
}

.recent-posts li:last-child{
    border-bottom:none;
}

.recent-posts a{
    color:#444;
    text-decoration:none;
    transition:.3s;
}

.recent-posts a:hover{
    color:var(--primary);
}

/* AUTHOR BOX */

.author-box{
    margin-top:40px;
    background:var(--light);
    padding:20px;
    border-radius:12px;
    display:flex;
    gap:15px;
    align-items:center;
}

.author-avatar{
    width:70px;
    height:70px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
    font-size:22px;
}

/* MOBILE */

@media(max-width:991px){

    .blog-wrapper{
        grid-template-columns:1fr;
    }

    .sidebar{
        position:relative;
        top:0;
    }

    .blog-hero-content h1{
        font-size:38px;
    }
}

@media(max-width:576px){

    .blog-content{
        padding:20px;
    }

    .blog-hero{
        height:320px;
    }

    .blog-hero-content h1{
        font-size:28px;
    }

    .widget{
        padding:20px;
    }
}

.whatsapp-note{
    margin-top:15px;
    font-size:13px;
    line-height:1.6;
    text-align:center;
    color:rgba(255,255,255,0.85);
}

.whatsapp-note a{
    color:var(--primary);
    text-decoration:none;
    font-weight:600;
}

.whatsapp-note a:hover{
    text-decoration:underline;
}
ul {
      margin-bottom: 20px;
      padding-left: 30px;
    }
    li {
      margin-bottom: 8px;
    }

.blog-categories{
  padding: 70px 20px;
  background: #fffaf3;
  font-family: 'Poppins', sans-serif;
}

.container{
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.section-header{
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2{
  font-size: 34px;
  color: #2b1b12;
  margin-bottom: 10px;
}

.section-header p{
  color: #6b5b52;
  font-size: 16px;
}

/* CATEGORY GRID */
.category-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.category-card{
  position: relative;
  height: 200px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 18px;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: 0.3s ease;
}

.category-card::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.35);
}

.category-card:hover{
  transform: translateY(-6px);
}

.category-card h3{
  position: relative;
  font-size: 20px;
  margin-bottom: 4px;
}

.category-card span{
  position: relative;
  font-size: 13px;
  opacity: 0.9;
}

/* CATEGORY IMAGES */
.cat1{background-image:url('/img/desert-safari.jpeg');}
.cat2{background-image:url('/img/cultural-experiences.jpg');}
.cat3{background-image:url('/img/travel-guide.jpg');}
.cat4{background-image:url('/img/luxury-stay.jpg');}
.cat5{background-image:url('/img/camel-safari-jaisalmer.jpg');}
.cat6{background-image:url('/img/gadisar-lake.jpg');}

/* BLOG SECTION */
.blog-section{
  margin-top: 30px;
}

.blog-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:20px;
}

.blog-card{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 6px 20px rgba(0,0,0,0.08);
  transition:0.3s;
}

.blog-card:hover{
  transform: translateY(-5px);
}

.blog-img{
  height:180px;
  background-size:cover;
  background-position:center;
}

.blog-content{
  padding:15px;
}

.blog-date{
  font-size:12px;
  color:#888;
  margin-bottom:8px;
}

.blog-content h3{
  font-size:18px;
  color:#2b1b12;
  margin-bottom:8px;
}

.blog-content p{
  font-size:16px;
  color:#000000;
  letter-spacing:0.3px;
  line-height:1.6;
  font-family: 'Poppins', sans-serif;
  margin-bottom:12px;
}

.read-more{
  display:inline-block;
  font-size:13px;
  color:#c97b3b;
  font-weight:600;
  text-decoration:none;
}

/* RESPONSIVE */
@media(max-width:900px){
  .category-grid,
  .blog-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px){
  .category-grid,
  .blog-grid{
    grid-template-columns: 1fr;
  }

  .section-header h2{
    font-size:26px;
  }
}