/* tours.css */

/* General styles for the page */
body {
  background: #002346; /* Dark blue background */
  color: #333; /* Dark text color */
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  padding-top: 70px; /* Add padding to prevent content from being hidden under the fixed navbar */
}

.navbar .navbar-brand,
.navbar .nav-link {
  transition: transform 0.3s ease, color 0.3s ease;
  color: #ffffff !important;
}
.navbar .navbar-brand:hover,
.navbar .nav-link:hover {
  transform: scale(1.1);   
   
  color: #ffd700 !important;      
}

.navbar {
  position: fixed; /* Fix the navbar at the top */
  top: 0;
  width: 100%;
  background-color: #002246 !important; /* Ensure the navbar has a consistent background color */
  box-shadow: 0 2px 4px rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  transition: background-color 0.3s ease;
  z-index: 1000; /* Ensure the navbar is above other content */
}

h1 {
  color: #ffffff; /* White color for headings */
  text-align: center;
  margin-top: 20px;
  font-size: 2.5em;
  text-transform: uppercase;
  letter-spacing: 2px;
}

p {
  color: #ffffff; /* White color for paragraphs */
  text-align: center;
  font-size: 1.2em;
  margin-bottom: 20px;
}

h2 {
  color: #002355; /* A shade of blue for subheadings */
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.tour-box {
  position: relative;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.tour-content {
  position: relative;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
  padding: 20px;
  opacity: 0.8;
}

.tour-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  background-size: cover;
  background-position: center calc(50% + 20px);
  z-index: 1;
}

#paris-tours::before {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("images/paris.jpg");
  background-size: cover;
  background-position: center;
}

#rome-tours::before {
  background-image: url("images/colosseum.jpg");
  background-position: right;
}

#indonesia-tours::before {
  background-image: url("images/indonesia.jpg");
}

#india-tours::before {
  background-image: url("images/tm.jpeg");
}

#tokyo-tours::before {
  background-image: url("images/tokyo2.jpg");
}

#newyork-tours::before {
  background-image: url("images/nyc.jpg");
}

#sydney-tours::before {
  background-image: url("images/sydeney.webp");
}
/* Star button animations */
@keyframes starPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.star-button {
  animation: starPop 0.3s ease;
}

/* Notification animations */
@keyframes slideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@keyframes slideOut {
  from { transform: translateX(0); }
  to { transform: translateX(100%); }
}

/* Loading state */
.star-button:disabled {
  cursor: not-allowed;
  color: #333;
}

/* Tooltip container */
[data-tooltip] {
  position: relative;
}

/* Tooltip text */
[data-tooltip]:hover::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  z-index: 1000;
}

footer {
  background-color: #343a40;
  color: #ffffff;
  padding: 20px 10px;
  text-align: center;
  position: relative;
  bottom: 0;
  width: 100%;
}

footer p {
  margin: 0;
}
