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

h1 {
  font-size: 26px;
  margin-bottom: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

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

/* Header Message Styles */
.header-message {
  background-color: #ccc;
  padding: 0.35rem 0;
  text-align: center;
}

.header-message p {
  margin: 0;
  font-size: 0.9rem;
  color: #333;
  font-weight: 500;
}

/* Navigation Styles */
.site-header {
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  background-color: #fff;
  padding: 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.nav-logo img {
  height: 60px;
  width: auto;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 769px) {
  .nav-menu {
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}


.nav-link {
  color: #000;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}
 
.nav-link a{
  padding-right: 20px;
}

.disclaimer-link {
  text-align: right;
}

.disclaimer-link a {
  color: red !important;
  font-weight: bold !important;
  text-decoration: underline;
}

.nav-link:hover {
  color: rgb(0,75,135);
}

.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Mega Menu Styles */
.mega-menu {
  position: absolute;
  top: 100%;
  left: -100px;
  background-color: #fff;
  min-width: 600px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  border: 1px solid #e9ecef;
  padding: 2rem;
}

.nav-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.mega-menu-column {
  display: flex;
  flex-direction: column;
}

.mega-menu-title {
  font-size: 1rem;
  font-weight: bold;
  color: rgb(0,75,135);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgb(0,75,135);
}

.mega-menu-link {
  display: block;
  padding: 0.5rem 0;
  color: #000;
  text-decoration: none;
  font-size: 17px;
  font-weight: bold;
  transition: color 0.3s ease;
}

.mega-menu-link:hover {
  color: rgb(0,75,135);
  font-weight: 500;
}

.nav-hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  margin-left: auto;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: #000;
  margin: 3px 0;
  transition: 0.3s;
}

/* Mobile Menu Styles - Apply to all screen sizes */
.nav-menu.mobile-active {
  position: fixed;
  top: 110px;
  right: 0;
  width: 100%;
  height: calc(100vh - 110px);
  background-color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
  padding-top: 2rem;
  z-index: 999;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  display: flex;
}

.nav-menu.mobile-active .nav-link {
  display: block;
  padding: 1rem 2rem;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #e9ecef;
  color: #000;
}

.nav-menu.mobile-active .nav-dropdown .dropdown-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  background-color: #f8f9fa;
  min-width: 100%;
  border: none;
}

.nav-hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, rgb(0,75,135) 0%, rgb(30,100,160) 100%);
  color: white;
  padding: 2rem 0;
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Activities Section */
.activities-section {
  padding: 2rem 0;
  background-color: #f9f9f9;
}

/* Destinations Section */
.destinations-section {
  padding: 2rem 0;
  background-color: white;
}

/* Events Section */
.events-section {
  padding: 2rem 0;
  background-color: #f9f9f9;
}

.section-title {
  text-align: left;
  font-size: 1.675rem;
  margin-bottom: .75rem;
  color: #333;
}

.activity-category-title {
  font-size: 1.05rem;
  color: rgb(0,75,135);
  margin: 1.6rem 0 1.2rem 0;
  font-weight: bold;
  text-align: left;
}

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

.activity-card {
  background: white;
  padding: 0 0 10px 0;
  text-align: center;
  border-radius: 8px;
  border: 2px solid #ccc;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.activity-image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 6px 6px 0 0;
  border: 1px solid #ccc;
}

.activity-card h3 {
  font-size: 20px;
  margin: 0;
}

.activity-card h3 a {
  color: #333;
  text-decoration: none;
}

.activity-card h3 a:hover {
  color: rgb(0,75,135);
}

/* Destinations Section */
.states-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.state-section h3 {
  font-size: 20px;
  margin-bottom: 1.5rem;
  color: rgb(0,75,135);
}

.state-section h3 a {
  color: rgb(0,75,135);
  text-decoration: none;
  font-weight: bold;
}

.state-section h3 a:hover {
  text-decoration: underline;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.destination-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.destination-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #ccc;
  margin-bottom: 0.5rem;
}

.destination-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  line-height: 1.2;
}

/* Blog Preview Section */
.blog-preview {
  padding: 4rem 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.blog-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-image {
  height: 200px;
  overflow: hidden;
}

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

.blog-content {
  padding: 1.5rem;
}

.blog-content h3 {
  font-size: 20px;
  margin-bottom: 0.5rem;
}

.blog-content h3 a {
  color: #333;
  text-decoration: none;
}

.blog-content h3 a:hover {
  color: rgb(0,75,135);
}

.blog-meta {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.blog-excerpt {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.read-more {
  color: rgb(0,75,135);
  text-decoration: none;
  font-weight: 500;
}

.read-more:hover {
  text-decoration: underline;
}

.blog-cta {
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: rgb(0,75,135);
  color: white;
}

.btn-primary:hover {
  background-color: rgb(0,60,115);
  transform: translateY(-2px);
}

/* Topic Pages */
.topic-header {
  background: linear-gradient(135deg, rgb(0,75,135) 0%, rgb(30,100,160) 100%);
  color: white;
  padding: 20px 0;
  text-align: center;
}

.topic-title {
  font-size: 3rem;
  font-weight: 700;
}

.topic-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
}

.topic-content {
  padding: .5rem 0;
}

.topic-intro {
  max-width: 1100px;
  margin: 0;;
  font-size: 1.1rem;
  line-height: 1.8;
}

.section-intro {
  margin-bottom: 1rem;
}

.topic-overview{
  font-size: 16px;
}

.topic-overview h2 {
  color: rgb(0,75,135);
  margin-bottom: 1rem;
}

.topic-overview p {
  margin-bottom: 1rem;
}

/* Section Navigation */
.section-navigation {
  margin: 1rem 0 .5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  font-weight: bold;
  
}

.section-navigation a {
  color: blue;
  text-decoration: underline;
  font-size: 16px;
}

.section-navigation a:hover {
  color: #0056b3;
}

/* Gear Section */
.gear-section {
  margin-bottom: 1rem;
}

.gear-section h2 {
  color: rgb(0,75,135);
  font-size: 22px;
  margin-bottom: 0;
  text-align: left;
}

.gear-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gear-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.gear-card:hover {
  transform: translateY(-5px);
}

.gear-image {
  height: 200px;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 4rem;
}

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

.gear-content {
  padding: 1rem;
}

.gear-content h3 {
  color: #333;
  font-size: 20px;
  margin-bottom: .5r0em;
}

.gear-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.safety-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  background-color: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 4px;
  padding: 5px;
  font-size: 0.9rem;
}

.safety-note i {
  color: #856404;
  margin-top: 0.1rem;
}

/* Safety Section */
.safety-section {
  margin-bottom: 1rem;
}

.safety-section h2 {
  color: rgb(0,75,135);
  font-size: 24px;
  margin-bottom: 0;
  text-align: left;
}

.safety-tips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.safety-section h2 {
  margin-bottom: 0;
}

.safety-tip {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: #f8f9fa;
  padding: 15px 10px 10px 10px;
  border-radius: 8px;
  border-left: 4px solid rgb(0,75,135);
}

.safety-tip i {
  color: rgb(0,75,135);
  font-size: 1.5rem;
  margin-top: 0.2rem;
}

/* Getting Started Section */
.getting-started-section {
  background-color: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
}

.getting-started-section h2 {
  color: rgb(0,75,135);
  font-size: 24px;
  margin-bottom: 0;
  text-align: left;
}

.getting-started-content h3 {
  color: #333;
  margin-top: 1rem;
  margin-bottom: 0;
}

.getting-started-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Blog Pages */
.blog-header {
  background: linear-gradient(135deg, rgb(0,75,135) 0%, rgb(30,100,160) 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
}

.blog-content {
  padding: 4rem 0;
}

.blog-post-preview {
  display: flex;
  margin-bottom: 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
}

.post-image {
  flex: 0 0 300px;
}

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

.post-content {
  flex: 1;
  padding: 2rem;
}

.post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #666;
}

.post-category {
  background-color: rgb(0,75,135);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
}

.post-content h2 {
  font-size: 24px;
  margin-bottom: 1rem;
}

.post-content h2 a {
  color: #333;
  text-decoration: none;
}

.post-content h2 a:hover {
  color: rgb(0,75,135);
}

.post-excerpt {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #666;
}

.read-more-link {
  color: rgb(0,75,135);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.read-more-link:hover {
  text-decoration: underline;
}

.no-posts {
  text-align: center;
  padding: 2.5rem 2rem;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.no-posts h2 {
  color: rgb(0,75,135);
  margin-bottom: 1rem;
}

/* Post Layout */
.post-header {
  background: linear-gradient(135deg, rgb(0,75,135) 0%, rgb(30,100,160) 100%);
  color: white;
  padding: 4rem 0 2rem;
}

.post-hero-image {
  margin-bottom: 2rem;
  border-radius: 8px;
  overflow: hidden;
}

.post-hero-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.post-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.post-content {
  padding: 4rem 0;
}

.post-body {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
}

.post-footer {
  max-width: 1100px;
  margin: 3rem auto 0;
  padding-top: 3rem;
  border-top: 1px solid #eee;
}

.post-tags h4 {
  margin-bottom: 1rem;
  color: #333;
}

.tag {
  background-color: rgb(0,75,135);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-right: 0.5rem;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.prev-post,
.next-post {
  color: rgb(0,75,135);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.prev-post:hover,
.next-post:hover {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  background-color: #000;
  color: white;
  padding: 1rem 0 1rem;
  margin-top: 1rem;
}

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

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-section h3 {
  color: rgb(0,75,135);
  margin-bottom: 0;
  font-size: 28px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-section ul li a:hover {
  color: rgb(0,75,135);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: #ccc;
  font-size: 1.5rem;
  text-decoration: none;
}

.social-link:hover {
  color: rgb(0,75,135);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1rem;
  text-align: center;
  color: #ccc;
  font-size: 0.9rem;
}

.disclaimer {text-align:left}

/* Tablet Design */
@media (min-width: 769px) and (max-width: 1200px) {
  .activities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .destinations-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Mobile Design */
@media (max-width: 768px) {
  
  .hero-title {
    font-size: 1.4rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .topic-title {
    font-size: 2rem;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .post-title {
    font-size: 2rem;
  }
  
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .destinations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .nav-menu.mobile-active .nav-dropdown .mega-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: none;
    box-shadow: none;
    background-color: #f8f9fa;
    min-width: 100%;
    border: none;
    padding: 1rem 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, max-height 0.3s ease;
  }

  .nav-menu.mobile-active .nav-dropdown.dropdown-active .mega-menu {
    opacity: 1;
    visibility: visible;
    max-height: 1000px;
  }
  
  .nav-menu.mobile-active .mega-menu-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .nav-menu.mobile-active .mega-menu-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 0.5rem;
    padding-bottom: 0.20rem;
    border-bottom: 1px solid rgb(0,75,135);
  }
  
  .nav-menu.mobile-active .mega-menu-link {
    padding: 0.20rem 1rem;
    font-size: 18px;
  }
  
  .blog-post-preview {
    flex-direction: column;
  }
  
  .post-image {
    flex: none;
    height: 200px;
  }
  
  .post-navigation {
    flex-direction: column;
    gap: 1rem;
  }
}