/* Custom Stylesheet for Varanasi Tourism Website */

body, h1, h2, h3, h4, h5, h6 {
  font-family: "Verdana", sans-serif;
}

body {
  margin-top: 50px;
  transition: background-color 0.3s, color 0.3s;
}

.theme-color {
  color: #fff !important;
  background-color: #ff9800 !important;
}

.w3-content {
  padding-top: 32px;
  padding-bottom: 32px;
}

h2 {
  font-weight: 600;
  margin-bottom: 24px;
}

.w3-button {
  transition: background-color 0.3s ease;
}

hr {
  border: 0;
  border-top: 1px solid #eee;
  margin: 20px 0;
}

/* --- Hero Image Section --- */
.hero-image {
  /* Use the image from your 'images' folder */
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("images/heroimage.jpg");
  height: 60vh; /* 60% of the viewport height */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

/* --- Dark Mode Styles --- */
body.dark-mode {
  background-color: #121212;
  color: #e0e0e0;
}

.dark-mode .w3-white,
.dark-mode .w3-card {
  background-color: #1e1e1e !important;
  color: #e0e0e0 !important;
}

.dark-mode .w3-light-grey {
    background-color: #2c2c2c !important;
}

.dark-mode .w3-button:not(.w3-black) {
    color: #e0e0e0 !important;
}

.dark-mode .w3-button:hover {
    background-color: #333 !important;
}

.dark-mode .w3-border {
  border-color: #444 !important;
}

.dark-mode .w3-input {
  background-color: #333 !important;
  color: #e0e0e0 !important;
}

.dark-mode .w3-opacity {
  color: #aaa !important;
}

.dark-mode hr {
  border-top: 1px solid #444;
}