@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;600;700&display=swap');

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #222;
}

.navbar {
  background-color: rgba(152, 46, 113, 0.5); /* New transparent orange-ish color */
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar .logo {
  font-family: 'Josefin Sans', sans-serif; /* Earthy and travel-inspiring font */
  font-size: 1.8rem; /* Adjust size as needed */
  font-weight: 600; /* A good weight for Josefin Sans for headings */
  letter-spacing: 1.5px; /* Slight spacing can enhance its look */
  color: #ffffff; /* Bright white for good contrast, or choose another e.g. #FFD700 for gold */
  /* text-transform: uppercase; Josefin Sans looks good in title case or uppercase */
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.navbar .nav-links li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.navbar .nav-links li a:hover {
  color: #ffd700;
}

.hero {
  background: url('../images/cover.avif') center/cover no-repeat;
  height: 100vh; /* Make hero section fill the entire viewport height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 1rem 0; /* Added top padding to push content below navbar */
  color: #fff;
  background-color: #000;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

.hero p {
  font-size: 1.3rem;
  max-width: 600px;
  text-shadow: 0 2px 5px rgba(0,0,0,0.6);
}

.cta {
  margin-top: 2rem;
  padding: 0.8rem 1.5rem;
  background-color: #ffd700;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
}

.featured, .about {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.featured h2, .about h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.featured p, .about p {
  font-size: 1.1rem;
  color: #555;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.story-card {
  background-color: #f7f7f7;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.story-card:hover {
  transform: scale(1.02);
}

.story-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.story-card h3 {
  padding: 1rem;
  font-size: 1.2rem;
}

footer {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 3rem;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

.cta-button-futuristic {
  background: linear-gradient(135deg, rgba(249, 199, 120, 0.5), rgba(167, 119, 227, 0.85)); /* Vibrant gradient with 85% opacity */
  color: white;
  border: none; /* Remove default border */
  padding: 15px 30px; /* More padding */
  font-size: 1.1em; /* Slightly larger font */
  font-weight: bold;
  border-radius: 50px; /* Pill shape or less for rounded rectangle */
  cursor: pointer;
  transition: all 0.3s ease-in-out; /* Smooth transitions */
  box-shadow: 0 5px 15px rgba(224, 222, 237, 0.4); /* Softer, colored glow */
  text-transform: uppercase; /* Often seen in modern UIs */
  letter-spacing: 1px; /* A bit of letter spacing */
}

.cta-button-futuristic:hover,
.cta-button-futuristic:focus {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(127, 123, 133, 0.9)); /* Slightly darker/shifted gradient with 90% opacity */
  box-shadow: 0 8px 25px rgba(100, 80, 230, 0.6); /* Enhanced glow */
  transform: translateY(-3px) scale(1.05); /* Lift and slightly scale up */
  outline: none; /* Remove focus outline if custom shadow is preferred */
}

.cta-button-futuristic:active {
  transform: translateY(-1px) scale(1.02); /* Press down effect */
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.5);
}

/* If you want to remove base styling from .cta-button that might interfere:
.cta-button {
   all: unset; // or specific properties you want to reset
}
Then apply all styling through .cta-button-futuristic
*/
