/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f8f4f0; /* Soft off-white color resembling traditional parchment */
    color: #333;
  }
  
  /* Header Section */
  header {
    background-image: url('../images/heritage_background.jpg'); /* Use a heritage design background image */
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay; /* Blend with a semi-transparent overlay */
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay to make text readable */
    color: white;
    text-align: center;
    padding: 80px 20px;
  }
  
  .header-container h1 {
    font-size: 48px;
    margin-bottom: 10px;
  }
  
  .header-container p {
    font-size: 24px;
    margin-bottom: 20px;
  }
  /*button */
  nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

.button {
    text-decoration: none; /* Remove underline */
    background-color: #ff5722; /* Vibrant Indian Orange */
    color: white;
    border: 3px solid #ffd700; /* Golden Border */
    padding: 10px 20px;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, background-color 0.3s;
    display: inline-block;
}

.button-hotels:hover {
    background-color: #d8c415; /* Darker Orange */
    transform: scale(1.1); /* Grow slightly on hover */
}
.button-travel:hover {
  background-color: #ff1e0097; /* Darker Orange */
  transform: scale(1.1); /* Grow slightly on hover */
}


.button:active {
    background-color: #bf360c; /* Even darker when clicked */
}

.button:before {
    content: '';
    display: inline-block;
    height: 5px;
    width: 5px;
    background-color: #ffd700; /* Golden decorative dot */
    margin-right: 8px;
    border-radius: 50%;
}

.button-travel {
    background-color: #ff911ca4; /* Green for travel */
}
.button-hotels{
  background-color: #ECA427; /* Green for travel */
}

/*button*/
  .cta-button {
    background-color: #d4a373; /* Earthy color inspired by Indian spices */
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  
  .cta-button:hover {
    background-color: #c2895e; /* Darken button color on hover */
  }
  
  /* Destinations Section */
  #destinations {
    padding: 40px 20px;
    text-align: center;
    background-color: #fff3e0; /* Light tan background resembling traditional fabric */
  }
  
  #destinations h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .destination-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  
  .card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    width: 300px;
    margin: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid #d4a373; /* Border inspired by traditional Indian designs */
  }
  
  .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .card h3 {
    font-size: 24px;
    margin: 10px 0;
  }
  
  .card p {
    font-size: 16px;
    padding: 0 10px;
    margin-bottom: 20px;
  }
  
  /* Form Section */
  #form-section {
    padding: 40px 20px;
    background-color: #e0e0e0;
    text-align: center;
  }
  
  #form-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  form {
    max-width: 500px;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  form label {
    display: block;
    text-align: left;
    font-weight: bold;
    margin-bottom: 8px;
  }
  
  form input, form select, form input[type = "date"]{
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
  }
  
  form button {
    background-color: #4caf50;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  form button:hover {
    background-color: #45a049;
  }
  
  /* Footer */
  footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
  }
  