/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

.blog-container {
  max-width: 100%;
  overflow-x: hidden;
}

.blog-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.blog-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background-image: url("images/hills.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.blog-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2); /* Dark overlay for text visibility */
  z-index: 1;
}

.blog-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%); */
  z-index: 2;
}

.blog-hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 20px;
  animation: heroFadeIn 1.5s ease-out;
}

.blog-hero-title {
  font-family: "cursive", serif;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  /* text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5); */
  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  position: relative;
  
}

.blog-hero-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

.blog-hero-subtitle {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
  font-family: cursive;
}

.blog-hero-description {
  /* background: rgba(255, 255, 255, 0.1); */
  /* backdrop-filter: blur(10px); */
  /* border-radius: 20px; */
  padding: 30px;
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.blog-hero-description p {
  font-size: 1.3rem;
  font-weight: 400;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.blog-hero-decorative {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.blog-hero-decorative:nth-child(2) {
  top: 30%;
  right: 15%;
  left: auto;
  width: 40px;
  height: 40px;
  animation-delay: -2s;
}

.blog-hero-decorative:nth-child(3) {
  bottom: 25%;
  left: 20%;
  top: auto;
  width: 50px;
  height: 50px;
  animation-delay: -4s;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.blog-hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
}

.blog-hero-scroll-indicator::before {
  content: "↓";
  font-size: 2rem;
  color: white;
  opacity: 0.8;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Introduction Section */
.blog-intro {
  padding: 80px 0;
  background: white;
}

.blog-intro-text {
  font-size: 1.3rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: #555;
  line-height: 1.8;
}

/* Destinations Section */
.blog-destinations {
  padding: 60px 0;
  background: #f8f9fa;
}

.blog-destination {
  background: white;
  border-radius: 20px;
  margin-bottom: 60px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-destination:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-destination-header {
  display: flex;
  align-items: center;
  padding: 40px 40px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.blog-destination-number {
  font-size: 3rem;
  font-weight: 700;
  margin-right: 20px;
  opacity: 0.8;
}

.blog-destination-title {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 600;
  flex: 1;
}

.blog-destination-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.blog-destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-destination:hover .blog-destination-image img {
  transform: scale(1.05);
}

.blog-destination-content {
  padding: 40px;
}

.blog-why-go,
.blog-experiences {
  margin-bottom: 30px;
}

.blog-why-go h3,
.blog-experiences h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  border-left: 4px solid #667eea;
  padding-left: 15px;
}

.blog-why-go p,
.blog-experiences p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
}

.blog-experience-list {
  list-style: none;
  padding-left: 0;
}

.blog-experience-list li {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  line-height: 1.6;
}

.blog-experience-list li::before {
  content: "🏖️";
  position: absolute;
  left: 0;
  top: 0;
}

.blog-tip {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  padding: 25px;
  border-radius: 15px;
  color: white;
}

.blog-tip h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-tip p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.95;
}

/* Call to Action Section */
.blog-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
}

.blog-cta-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 30px;
}

.blog-cta-text {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
  opacity: 0.9;
}

.blog-cta-button {
  background: white;
  color: #667eea;
  border: none;
  padding: 18px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.blog-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background: #f8f9fa;
}

/* Footer */
.blog-footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 30px 0;
}

.blog-footer p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-hero-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }

  .blog-hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }

  .blog-hero-description {
    padding: 25px 20px;
    margin: 0 10px;
  }

  .blog-hero-description p {
    font-size: 1.1rem;
  }

  .blog-hero-decorative {
    display: none;
  }

  .blog-intro-text {
    font-size: 1.1rem;
    padding: 0 10px;
  }

  .blog-destination-header {
    padding: 30px 20px 15px;
    flex-direction: column;
    text-align: center;
  }

  .blog-destination-number {
    margin-right: 0;
    margin-bottom: 10px;
    font-size: 2.5rem;
  }

  .blog-destination-title {
    font-size: 1.8rem;
  }

  .blog-destination-content {
    padding: 30px 20px;
  }

  .blog-destination-image {
    height: 250px;
  }

  .blog-cta-title {
    font-size: 2.2rem;
  }

  .blog-cta-text {
    font-size: 1.1rem;
    padding: 0 10px;
  }

  .blog-cta-button {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .blog-hero {
    min-height: 500px;
  }

  .blog-hero-title {
    font-size: 2.2rem;
  }

  .blog-hero-subtitle {
    font-size: 1.1rem;
  }

  .blog-hero-description {
    padding: 20px 15px;
  }

  .blog-hero-description p {
    font-size: 1rem;
  }

  .blog-destination {
    margin-bottom: 40px;
    border-radius: 15px;
  }

  .blog-destination-header {
    padding: 20px 15px 10px;
  }

  .blog-destination-title {
    font-size: 1.5rem;
  }

  .blog-destination-content {
    padding: 20px 15px;
  }

  .blog-why-go h3,
  .blog-experiences h3 {
    font-size: 1.2rem;
  }

  .blog-tip {
    padding: 20px;
  }

  .blog-cta {
    padding: 60px 0;
  }

  .blog-cta-title {
    font-size: 1.8rem;
  }
}

/* Animation for smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animation for images */
.blog-destination-image img {
  opacity: 0;
  animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
