/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
background-image: url("/Resources/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: rgb(0, 0, 0);
  animation: fadeInBody 1.5s ease-in;
  font-size: 14px;
}

/* Animations */
@keyframes fadeInBody {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInHero {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Hero Section */
.hero {
  background: url('https://source.unsplash.com/1600x600/?travel') center/cover no-repeat;
  color: rgb(55, 46, 46);
  text-align: center;
  padding: 100px 20px;
  animation: slideInHero 2s ease-out forwards;
}


.hero h1 {
  font-size: 6rem;
  margin-bottom: 10px;
  animation: zoomIn 1.2s ease-in-out;
}

.hero p {
  font-size: 2rem;
  margin-bottom: 20px;
  animation: fadeInUp 2s ease-out;
}

.h {
  text-align: center;
  font-size: 1.5rem;
  animation: fadeInUp 1.5s ease-out;
  color: #333; /* You can customize the color */
}

/* Buttons */
.btn {
  background: #ff5722;
  padding: 10px 25px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #e64a19;
}

/* Explore Section */
.explore {
  background: linear-gradient(to top, #ff7e5f, #feb47b);
  padding: 60px 20px;
  text-align: center;
  color: white;
}

.explore h1 {
  font-size: 3rem;
}

/* Destinations Section */
.destinations {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  padding: 20px;
  justify-items: center;
}

/* Destination Cards */
.card {
  background: linear-gradient(to bottom right, rgba(255, 94, 77, 0.8), rgba(255, 148, 77, 0.8), rgba(255, 200, 77, 0.8));
  border-radius: 5px;
  overflow: hidden;
  width: 300px; /* Adjust width */
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transform: scale(1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  padding-bottom: 15px;
  color: black;
  animation: fadeInUp 1.5s ease forwards;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  padding: 15px 15px 0;
  font-size: 1.2rem;
}

.card p {
  padding: 10px 15px;
  font-size: 0.85rem;
  flex-grow: 1;
}

.card a.btn {
  margin-top: auto;
  align-self: center;
}

/* Booking Section */
.booking {
  background: linear-gradient(to right, #00c6ff, #0072ff);
  padding: 60px 20px;
  text-align: center;
  color: white;
  animation: fadeIn 1.5s ease-in;
}

.booking form {
  max-width: 500px;
  margin: 0 auto;
  display: grid;
  gap: 15px;
}

.booking input,
.booking select,
.booking textarea,
.booking button {
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.booking button {
  background-color: #4caf50;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.booking button:hover {
  background-color: #388e3c;
}

.booking h3 {
  font-size: 1.2rem;
  margin-top: 20px;
  color: #333;
  font-weight: bold;
  text-align: left;
}

.booking textarea {
  resize: vertical;
}

/* About Us Section */
#about-us {
  background: linear-gradient(to top right, #ff7e5f, #feb47b);
  color: black;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  animation: fadeIn 2s ease-in-out;
}

#about-us h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding: 20px;
}

.about-text,
.about-services {
  width: 45%;
}

.about-text h3,
.about-services h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.5;
}

.about-services ul {
  list-style-type: none;
  padding: 0;
}

.about-services li {
  margin: 10px 0;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.about-services li:hover {
  transform: scale(1.05);
}

.learn-more-btn {
  background-color: #ff5722;
  padding: 12px 30px;
  color: black;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1.1rem;
  margin-top: 20px;
  transition: background-color 0.3s ease-in-out;
}

.learn-more-btn:hover {
  background-color: #e64a19;
}

/* Services Section */
.services {
  padding: 60px 20px;
  text-align: center;
  background-color: #f4f4f4;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.service {
  display: inline-block;
  width: 250px;
  margin: 20px;
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.service img {
  width: 80px;
  height: auto;
  margin-bottom: 20px;
}

.service h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.service p {
  font-size: 1rem;
  color: #555;
}

/* Team Section */
.team {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.team-member {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 280px;
  text-align: center;
}

.team-member img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.team-member h3 {
  font-size: 1.5rem;
  margin: 10px 0;
}

.team-member p {
  font-size: 1rem;
  color: #555;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #263238;
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    align-items: center;
  }

  .about-text,
  .about-services {
    width: 100%;
  }

  .destinations {
    grid-template-columns: repeat(1, 1fr);
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero p {
    font-size: 1.8rem;
  }

  .card {
    width: 100%;
  }

  .service {
    width: 100%;
  }
}
/* --- STATUS CHECKER SECTION --- */
/* --- STATUS CHECKER SECTION --- */
.status-section {
    padding: 80px 20px;
    /* Apply the same background as your body */
    background-image: url("/Resources/background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Parallax effect */
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

/* Optional: Add a dark overlay to the section to help the white box pop */
.status-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Adjust darkness here */
    z-index: 1;
}

.status-container {
    position: relative;
    z-index: 2; /* Ensures content is above the overlay */
    max-width: 550px;
    margin: 0 auto;
    text-align: center;
    /* Glassmorphism Effect: Semi-transparent white */
    background: rgba(255, 255, 255, 0.9); 
    backdrop-filter: blur(10px); /* Blurs the background image behind the box */
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.status-container h2 {
    margin-bottom: 10px;
    color: #333;
}

.status-container p {
    color: #555;
    margin-bottom: 25px;
    font-size: 14px;
}

/* --- INPUT & BUTTON --- */
.status-input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#statusIdInput {
    padding: 15px;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

#statusIdInput:focus {
    border-color: #ff7e5f; /* Matches Poppins theme accent */
    background: #fffafa;
}

.status-btn {
    padding: 15px;
    background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.status-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 126, 95, 0.3);
}

/* --- RESULT CARD --- */
#statusResult {
    margin-top: 30px;
}

.status-card {
    text-align: left;
    padding: 20px;
    background: #fdfdfd;
    border-radius: 12px;
    border: 1px solid #eee;
    border-left: 6px solid #ccc; /* Default */
    animation: slideUp 0.4s ease-out;
}

.status-card h4 { margin-bottom: 5px; color: #333; }
.status-card p { margin: 5px 0; color: #555; }

/* Status-Specific Styles */
.status-card.accepted { border-left-color: #2d7d52; background-color: #f4faf6; }
.status-card.pending { border-left-color: #9a6b1a; background-color: #fffaf0; }
.status-card.declined { border-left-color: #b03434; background-color: #fff5f5; }

.status-label {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}