/* 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: #ffffff;
}

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

/* Color Variables */
:root {
  --primary: #0891b2;
  --primary-foreground: #ffffff;
  --secondary: #f0f9ff;
  --secondary-foreground: #0891b2;
  --accent: #06b6d4;
  --accent-foreground: #ffffff;
  --background: #ffffff;
  --foreground: #0f172a;
  --muted: #f8fafc;
  --muted-foreground: #64748b;
  --card: #ffffff;
  --card-foreground: #0f172a;
  --border: #e2e8f0;
  --input: #ffffff;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(8, 145, 178, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-icon {
  height: 2rem;
  width: 2rem;
  color: var(--primary-foreground);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-foreground);
}

.nav-links {
  display: none;
  gap: 2rem;
}

.nav-link {
  background: none;
  border: none;
  color: var(--primary-foreground);
  cursor: pointer;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.nav-link:hover {
  color: var(--secondary);
}

.mobile-menu-btn {
  display: block;
}

.menu-toggle {
  background: none;
  border: none;
  color: var(--primary-foreground);
  cursor: pointer;
}

.menu-icon,
.close-icon {
  height: 1.5rem;
  width: 1.5rem;
}

.mobile-nav {
  background: var(--primary);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav-content {
  padding: 0.5rem 0 0.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-link {
  background: none;
  border: none;
  color: var(--primary-foreground);
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  text-align: left;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.mobile-nav-link:hover {
  color: var(--secondary);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("breathtaking-mountain-landscape-with-lake-and-fore.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  padding: 0 1rem;
  max-width: 64rem;
  margin: 0 auto;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-balance: balance;
}

.hero-description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  text-pretty: pretty;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-btn {
  background: var(--accent);
  color: var(--accent-foreground);
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero-btn:hover {
  background: rgba(6, 182, 212, 0.9);
}

/* Sections */
.destinations {
  padding: 5rem 0;
  background: var(--muted);
}

.about {
  padding: 5rem 0;
  background: var(--background);
}

.contact {
  padding: 5rem 0;
  background: var(--muted);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 32rem;
  margin: 0 auto;
}

/* Destinations Grid */
.destinations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.destination-card {
  background: var(--card);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.card-image {
  position: relative;
  height: 16rem;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.card-info {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: white;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.card-location {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.location-icon {
  height: 1rem;
  width: 1rem;
}

.card-content {
  padding: 1.5rem;
}

.card-description {
  color: var(--card-foreground);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.card-btn {
  width: 100%;
  background: var(--secondary);
  color: var(--secondary-foreground);
  border: none;
  padding: 0.75rem;
  border-radius: 0.375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.card-btn:hover {
  background: rgba(240, 249, 255, 0.9);
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-icon {
  background: var(--card);
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.stat-icon svg {
  height: 2rem;
  width: 2rem;
  color: var(--primary);
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  background: var(--primary);
  border-radius: 0.5rem;
  padding: 0.75rem;
  flex-shrink: 0;
}

.contact-icon svg {
  height: 1.5rem;
  width: 1.5rem;
  color: var(--primary-foreground);
}

.contact-details h4 {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.contact-details p {
  color: var(--muted-foreground);
}

.office-hours {
  margin-top: 2rem;
}

.office-hours h4 {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hours-list p {
  color: var(--muted-foreground);
}

/* Contact Form */
.contact-form-card {
  background: var(--card);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--card-foreground);
  margin-bottom: 1.5rem;
}

.success-message {
  text-align: center;
  padding: 2rem;
  background: #dcfce7;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.success-icon {
  height: 2rem;
  width: 2rem;
  color: #16a34a;
  margin: 0 auto 0.5rem;
}

.success-title {
  font-weight: 600;
  color: #16a34a;
  margin-bottom: 0.25rem;
}

.success-subtitle {
  font-size: 0.875rem;
  color: #16a34a;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--card-foreground);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--input);
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  padding: 0.75rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: none;
}

.form-submit-btn {
  width: 100%;
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  padding: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-submit-btn:hover {
  background: rgba(8, 145, 178, 0.9);
}

/* Footer */
.footer {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  height: 2rem;
  width: 2rem;
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  text-align: left;
  padding: 0;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.footer-link:hover {
  color: var(--secondary);
}

.footer-links li:not(:has(button)) {
  color: rgba(255, 255, 255, 0.8);
}

.social-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-btn {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--primary-foreground);
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.social-btn:hover {
  background: var(--primary-foreground);
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Utility Classes */
.hidden {
  display: none !important;
}

/* Responsive Design */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .hero-title {
    font-size: 3.75rem;
  }

  .hero-description {
    font-size: 1.25rem;
  }

  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .destinations-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-title {
    font-size: 2.5rem;
  }
}

.logo-img{
	width: 55px;
	height: 45px;
}

.card-location .map-link {
    color: #fff;              /* White text */
    text-decoration: none;    /* Remove underline */
    font-weight: 500;         /* Slightly bold */
}

.card-location .map-link:hover {
    text-decoration: underline;  /* Show underline on hover */
}
