:root {
  --primary: #084082;
  --light: #f6f9fc;
}


section {
  padding: 80px 0;
}

.container {
  max-width: 1200px;
  margin: auto;
}

h2, h3, h4 {
  color: var(--primary);
  margin-bottom: 20px;
}

.element-full-row{
    float:none;
    padding:0;
    min-height:430px;
}
.section_wrap{
    float:none;
}

/* Intro */
.haryana_intro {
    position: relative;
  text-align: center;
  background: var(--light);
}

/* About */
.haryana_about {
  background: #fff;
}

/* Hotel Card */
.hotel_card {
  background: var(--primary);
  color: #fff;
  padding: 50px;
  border-radius: 16px;
}
.hotel_card p{
    color: #fff;
}

.hotel_card h3,
.hotel_card h4 {
  color: #fff;
}

/* Grids */
.grid-3, .grid-4, .grid-5 {
  display: grid;
  gap: 30px;
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

/* Cards */
.icon_card {
  background: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 14px;
  box-shadow: 0 12px 25px rgba(0,0,0,.08);
}

.icon_card i {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 10px;
}

/* Amenities */
.amenity_block {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 12px 25px rgba(0,0,0,.08);
}

.amenity_block ul {
  padding-left: 18px;
}
/* Remove default dots and add padding for the list */
.amenity_block ul.icon-list {
  list-style: none; /* Removes the bullet points */
  padding-left: 0;
  margin-top: 15px;
}

/* Style the list items for better spacing */
.amenity_block ul.icon-list li {
  position: relative;
  margin-bottom: 12px;
  font-size: 15px;
  display: flex; /* Aligns icon and text nicely */
  align-items: center; 
}

/* Style the Font Awesome icons */
.amenity_block ul.icon-list li i {
  color: var(--primary); /* Uses your primary blue color */
  width: 25px; /* Ensures all icons take up same width for alignment */
  text-align: center;
  margin-right: 10px; /* Space between icon and text */
  font-size: 16px;
}
/* CTA */
.haryana_cta {
  background: var(--primary);
  color: #fff;
  text-align: center;
}

.haryana_cta h3 {
  color: #fff;
}

.haryana_cta p{
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
  .grid-3, .grid-4, .grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .grid-3, .grid-4, .grid-5 {
    grid-template-columns: 1fr;
  }
}




/* --- HIMACHAL PAGE NEW SECTIONS --- */

/* Amenities Section */
.himachal_amenities {
  background: #fff;
}

/* Attractions Section (Destinations) */
.himachal_attractions {
    background: var(--light);
}

/* Best Time Section */
.himachal_time {
    background: var(--light);
    text-align: center;
}

/* --- Destination Card Styles --- */

/* Override default amenity_block padding to let image touch edges */
.amenity_block.destination_card {
    padding: 0; 
    overflow: hidden; /* Ensures image corners follow border radius */
    display: flex;
    flex-direction: column;
}

/* Style the image container */
.destination_card .dest_image {
    width: 100%;
    height: 300px; /* Fixed height for uniform look */
    overflow: hidden;
}

/* Style the actual image */
.destination_card .dest_image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers area without stretching */
    transition: transform 0.3s ease; /* Smooth zoom effect on hover */
}

/* Optional: Slight zoom effect on hover */
.destination_card:hover .dest_image img {
    transform: scale(1.05);
}

/* Padding for the text content below the image */
.destination_card .dest_content {
    padding: 30px;
}

/* Adjust icon spacing in the header */
.destination_card .dest_content h4 i {
    margin-right: 10px;
    color: var(--primary);
}

/* --- SEASON CARD STYLES --- */

.season_card {
    position: relative;
    width: 100%;
    height: 350px; /* Fixed height for consistent look */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    cursor: pointer;
}

/* Image Layer */
.season_card .season_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.season_card .season_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

/* Content Layer (Overlay) */
.season_card .season_content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2)); /* Gradient overlay */
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Align content to bottom initially */
    align-items: center;
    text-align: center;
    padding: 30px;
    color: #fff;
    transition: all 0.4s ease;
}

/* Typography Styles */
.season_card .season_content i {
    font-size: 40px;
    margin-bottom: 10px;
    color: #fff; /* White icon */
    transition: transform 0.4s ease;
}

.season_card .season_content h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff; /* White text */
}

.season_card .season_content .season_months {
    font-size: 14px;
    font-weight: 500;
    color: #ddd;
    margin-bottom: 15px;
    display: block;
}

/* The Description Text (Hidden Initially) */
.season_card .season_content .season_details {
    color: #fff;
    font-size: 15px;
    line-height: 1.5;
    max-height: 0; /* Hidden by default */
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    transform: translateY(20px);
}

/* --- HOVER EFFECTS --- */

/* 1. Zoom and Blur the Image */
.season_card:hover .season_img img {
    transform: scale(1.1); /* Zoom in */
    filter: blur(4px) brightness(0.7); /* Blur and darken */
}

/* 2. Center the content */
.season_card:hover .season_content {
    background: rgba(8, 64, 130, 0.6); /* Blue tint overlay using your primary color variable logic */
    justify-content: center; /* Move everything to center */
}

/* 3. Reveal the description */
.season_card:hover .season_content .season_details {
    max-height: 100px; /* Expand height */
    opacity: 1; /* Make visible */
    transform: translateY(0); /* Slide up */
}

/* 4. Move icon up slightly */
.season_card:hover .season_content i {
    transform: translateY(-10px);
}

/* CTA Section */
.himachal_cta {
  background: var(--primary);
  color: #fff;
  text-align: center;
}
.himachal_cta h3, .himachal_cta p {
  color: #fff;
}

/* Helper Class for 2-column grid (Used in Attractions) */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}