/* Reset and Base Styles */

html {
    scroll-behavior: smooth;
}

body {
    
    font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', cursive, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #87CEEB 0%, #98FB98 50%, #FFB347 100%);
    min-height: 100vh;
    padding-top: 80px;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4, #45B7D1, #96CEB4, #FFEAA7);
    background-size: 100% 100%;
    animation: gradientShift 15s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: fixed;
    top: 0;
    margin: 0;
    padding: 10px;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 100% 0%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1;
    padding: 0;
    margin: 0;
}


.logo .rock-icon {
    animation: bounce 2s infinite;
}

.logo .location {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: normal;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border: 2px solid transparent;
}

.nav-link:hover, .nav-link.active {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-color: rgba(255,255,255,0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
.main-content {
    
    min-height: calc(100vh - 90px);
}

.page {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.page.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Home Page Styles */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 80vh;
    padding: 4rem 0;
    background: rgba(255,255,255,0.95);
    margin: 2rem;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.hero-content {
    padding: 2rem 3rem;
}

.hero-title {
    font-size: 3.5rem;
    color: #FF6B6B;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    line-height: 1.2;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-8px); }
}

.hero-description {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid transparent;
    font-family: inherit;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn.btn-primary {
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
}

.btn.btn-secondary {
    background: linear-gradient(45deg, #45B7D1, #96CEB4);
}

.btn.btn-accent {
    background: linear-gradient(45deg, #FFEAA7, #FAB1A0);
    color: #333;
}

.hero-visual {
    padding: 2rem;
    position: relative;
}

.floating-rocks {
    position: relative;
    height: 400px;
}

.rock {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    border-radius: 50% 40% 60% 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: float 6s ease-in-out infinite;
}

.rock-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
    background: linear-gradient(45deg, #FF6B6B, #FAB1A0);
}

.rock-2 {
    top: 60%;
    right: 30%;
    animation-delay: 1.5s;
    background: linear-gradient(45deg, #4ECDC4, #96CEB4);
}

.rock-3 {
    bottom: 30%;
    left: 10%;
    animation-delay: 3s;
    background: linear-gradient(45deg, #45B7D1, #74b9ff);
}

.rock-4 {
    top: 10%;
    right: 10%;
    animation-delay: 4.5s;
    background: linear-gradient(45deg, #FFEAA7, #FDCB6E);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-40px) rotate(-5deg); }
    75% { transform: translateY(-20px) rotate(3deg); }
}

.features-section {
    padding: 4rem 0;
}

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #FF6B6B;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255,255,255,0.9);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 4rem;
    color: #4ECDC4;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Page Header Styles */
.page-header {
    text-align: center;
    padding: 3rem 0;
    background: rgba(255,255,255,0.9);
    margin: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.page-header h1 {
    font-size: 3rem;
    color: #FF6B6B;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.page-header p {
    font-size: 1.3rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Map Page Styles */
.map-tools {
    margin: 2rem;
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.qr-generator h3 {
    color: #4ECDC4;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.qr-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.qr-form input {
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.qr-form input:focus {
    outline: none;
    border-color: #4ECDC4;
}

.map-container {
    margin: 2rem;
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.world-map {
    position: relative;
    background: linear-gradient(135deg, #87CEEB, #98FB98);
    border-radius: 15px;
    height: 500px;
    overflow: hidden;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    position: relative;
}

.map-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.map-placeholder h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.map-pins {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.pin {
    position: absolute;
    color: #FF6B6B;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.pin:hover {
    transform: scale(1.2);
}

.pin-phoenix {
    top: 60%;
    left: 25%;
}

.pin-tucson {
    top: 75%;
    left: 27%;
}

.pin-flagstaff {
    top: 45%;
    left: 23%;
}

.pin-tooltip {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pin:hover .pin-tooltip {
    opacity: 1;
}

.recent-discoveries {
    margin: 2rem;
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.recent-discoveries h3 {
    color: #45B7D1;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.discoveries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.discovery-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.discovery-card:hover {
    transform: translateX(10px);
}

.discovery-icon {
    font-size: 2rem;
    color: #4ECDC4;
}

.discovery-info h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.discovery-info p {
    color: #666;
    margin-bottom: 0.3rem;
}

.discovery-info small {
    color: #999;
    font-size: 0.9rem;
}

/* Blog Page Styles */
.blog-actions {
    text-align: center;
    margin: 2rem;
}

.blog-posts {
    display: grid;
    gap: 2rem;
    margin: 2rem;
}

.blog-post {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4ECDC4;
    font-weight: 600;
}

.post-date {
    color: #999;
    font-size: 0.9rem;
}

.blog-post h3 {
    color: #FF6B6B;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.post-content {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.post-content p {
    margin-bottom: 1rem;
}

.post-actions {
    display: flex;
    gap: 1rem;
}

.like-btn, .comment-btn {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: inherit;
}

.like-btn:hover {
    color: #FF6B6B;
    background: rgba(255,107,107,0.1);
}

.comment-btn:hover {
    color: #4ECDC4;
    background: rgba(78,205,196,0.1);
}

/* Subscription Page Styles */
.subscription-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 2rem;
}

.plan-card {
    background: rgba(255,255,255,0.95);
    border-radius: 25px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #4ECDC4, #45B7D1);
}

.plan-card.explorer::before {
    background: linear-gradient(90deg, #4ECDC4, #96CEB4);
}

.plan-card.adventurer::before {
    background: linear-gradient(90deg, #45B7D1, #74b9ff);
}

.plan-card.legend::before {
    background: linear-gradient(90deg, #FF6B6B, #FAB1A0);
}

.plan-card.featured {
    transform: scale(1.05);
    border-color: #45B7D1;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.plan-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #FF6B6B;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #4ECDC4;
}

.adventurer .plan-icon {
    color: #45B7D1;
}

.legend .plan-icon {
    color: #FF6B6B;
}

.plan-card h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.plan-price {
    margin: 1.5rem 0;
    font-weight: bold;
}

.plan-price .currency {
    font-size: 1.5rem;
    color: #666;
}

.plan-price .amount {
    font-size: 3rem;
    color: #FF6B6B;
}

.plan-price .period {
    font-size: 1.2rem;
    color: #666;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.plan-features li {
    margin: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #555;
    font-size: 1rem;
}

.plan-features i {
    color: #4ECDC4;
    width: 16px;
}

.plan-btn {
    width: 100%;
    margin-top: 1rem;
    font-size: 1.1rem;
}

.plan-benefits {
    margin: 4rem 2rem 2rem;
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.plan-benefits h3 {
    color: #45B7D1;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.benefit-item i {
    font-size: 1.5rem;
    color: #4ECDC4;
}

/* About Page Styles */
.about-hero {
    background: rgba(255,255,255,0.95);
    margin: 2rem;
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-hero h1 {
    font-size: 3rem;
    color: #FF6B6B;
    margin-bottom: 1rem;
}

.about-subtitle {
    font-size: 1.4rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-story {
    margin: 2rem;
}

.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 15px 45px rgba(0,0,0,0.08);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(40px);
  animation: fadeSlideIn 0.8s ease forwards;
}
.story-section:nth-child(even) {
  animation-delay: 0.2s;
}

.story-section:nth-child(odd) {
  animation-delay: 0.4s;
}

.story-section.reverse {
    grid-template-columns: 1fr 1fr;
}

.story-section.reverse .story-text {
    order: 2;
}

.story-section.reverse .story-visual {
    order: 1;
}

.story-text h2 {
  font-size: 2rem;
  color: #4ECDC4;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.05);
}

@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.story-text p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.visual-placeholder {
  background: rgba(255,255,255,0.5);
  border-radius: 15px;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #4ECDC4;
  font-size: 2rem;
  border: 2px dashed #ddd;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visual-placeholder:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.visual-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.community-stats {
    background: rgba(255,255,255,0.95);
    margin: 2rem;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.community-stats h2 {
    text-align: center;
    color: #45B7D1;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4ECDC4, #45B7D1);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #FF6B6B;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.stat-icon {
    font-size: 2rem;
    color: #4ECDC4;
}

.team-section {
    background: rgba(255,255,255,0.95);
    margin: 2rem;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-section h2 {
    text-align: center;
    color: #96CEB4;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.member-photo {
    margin-bottom: 1rem;
}

.member-photo i {
    font-size: 4rem;
    color: #4ECDC4;
}

.team-member h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #4ECDC4;
    font-weight: 600;
    margin-bottom: 1rem;
}
.emptyspace {
    padding: 12px;
}
.team-member p {
    color: #666;
    line-height: 1.5;
}

/* Contact Page Styles */
.contact-content {
    margin-top: 80px;
    padding-top: 80px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin: 2rem;
}

.contact-form-section, .contact-info-section {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: #4ECDC4;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4ECDC4;
    box-shadow: 0 0 0 3px rgba(78,205,196,0.1);
}

.contact-info h3 {
    color: #45B7D1;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #4ECDC4;
    margin-top: 0.2rem;
}

.contact-item strong {
    display: block;
    color: #333;
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.newsletter-signup {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
}

.newsletter-signup h3 {
    color: #96CEB4;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.newsletter-signup p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.newsletter-form .form-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    margin-bottom: 0;
}

.newsletter-benefits {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.newsletter-benefits i {
    color: #4ECDC4;
    margin-right: 0.3rem;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #2d3436, #636e72);
    color: #4ECDC4;
    margin-top: 4rem;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #4ECDC4;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-logo i {
    color: #4ECDC4;
}

.footer-section p {
    color: #b2bec3;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #b2bec3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4ECDC4;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
     
}


.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(78,205,196,0.2);
    border-radius: 50%;
    color: #4ECDC4;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #4ECDC4;
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #636e72;
    padding-top: 1rem;
    text-align: center;
    color: #b2bec3;
}

.footer-bottom a {
    color: #4ECDC4;
    text-decoration: none;
}

/* Modal Styles */
.modal {
    display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  align-items: center;
  justify-content: center;
}

.modal.active {
    display: flex;
   
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: #fff;
  padding: 2rem;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  position: relative;

}

@keyframes modalSlideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.modal-header h3 {
    color: #4ECDC4;
    font-size: 1.8rem;
    margin: 0;
}

.close-modal {
   position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;

}

.close-modal:hover {
    background: #f0f0f0;
    color: #333;
}

.blog-form {
    padding: 1rem 2rem 2rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

/* Loading Spinner */
.loading-spinner {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.9);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    backdrop-filter: blur(5px);
}

.loading-spinner.active {
    display: flex;
}

.spinner {
    font-size: 4rem;
    color: #4ECDC4;
    animation: spin 2s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.loading-spinner p {
    font-size: 1.2rem;
    color: #666;
}

/* QR Result Styles */
.qr-result {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    margin-top: 1rem;
    display: none;
}

.qr-result.active {
    display: block;
}

.qr-result h4 {
    color: #4ECDC4;
    margin-bottom: 1rem;
}

.qr-code-display {
    width: 200px;
    height: 200px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 10px;
    margin: 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #999;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .story-section,
    .story-section.reverse {
        grid-template-columns: 1fr;
    }
    
    .story-section.reverse .story-text,
    .story-section.reverse .story-visual {
        order: initial;
    }
    
    .contact-content {
        margin-top: 80px;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: rgba(255,255,255,0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        backdrop-filter: blur(10px);
        padding: 2rem 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
        width: 100%;
    }
    
    .nav-link {
        color: #333 !important;
        background: rgba(78,205,196,0.1);
        margin: 0 1rem;
        display: block;
    }
    
    .nav-link.active,
    .nav-link:hover {
        background: rgba(78,205,196,0.2);
        color: #4ECDC4 !important;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .qr-form {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        justify-content: center;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .subscription-plans {
        grid-template-columns: 1fr;
        margin: 2rem 1rem;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .floating-rocks {
        height: 250px;
    }
    
    .rock {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0px;
    }
    
    .hero-section,
    .page-header,
    .map-tools,
    .map-container,
    .recent-discoveries,
    .blog-posts,
    .about-hero,
    .about-story,
    .community-stats,
    .team-section,
    .contact-content {
        margin: 1rem;
    }
  
    .hero-content {
        padding: 2rem 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .discoveries-grid,
    .stats-grid,
    .team-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .nav-container {
        padding: 0 15px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

.slide-up {
    animation: slideUp 0.6s ease-in-out;
}

@keyframes slideUp {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.bounce-in {
    animation: bounceIn 0.8s ease-in-out;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cta-buttons,
    .btn,
    .modal,
    .loading-spinner {
        display: none;
    }
    
    .main-content {
        margin-top: 0;
    }
    
    body {
        background: white;
    }
    
    .page {
        display: block !important;
        page-break-after: always;
    }
    
    .page:last-child {
        page-break-after: avoid;
    }
}

.contact-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.contact-card h1 {
  text-align: center;
  color: #45B7D1;
  margin-bottom: 2rem;
}


/* Gallery Page Section with Floating Hero Style */
.gallery-section {
    margin: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(240,240,240,0.9));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.gallery-section h2 {
    text-align: center;
    color: #4ECDC4;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Each Gallery Item */
.gallery-item {
     width: 400px; /* sets a fixed width for the boxes */
    height: 400px; /* sets a fixed height */
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); /* smaller boxes on mobile */
        gap: 0.5rem;
    }

    .gallery-item {
        width: 100px;
        height: 100px;
    }
}



.logo .site-title {
  font-size: 1.2rem;
}

.logo .location {
  font-size: 0.7rem;
  margin-top: 0.2rem;
}

.site-title {
  font-size: 1.2rem; /* Smaller font */
  font-weight: bold;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.location {
  font-size: 0.8rem;
  color: #555;
}

.highlight-text {
  color: #4ECDC4 !important;     /* Match this to the "Quick Links" color */
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.post-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.post-card:hover {
  transform: translateY(-5px);
}

.post-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 1rem;
}

.post-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 0.5rem;
}

.post-content p {
  margin-top: 0.5rem;
  font-size: 1rem;
}



/* ✅ MOBILE NAVIGATION FIX */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1001;
  }

  .hamburger span {
    height: 3px;
    background-color: white;
    border-radius: 5px;
    transition: all 0.3s ease;
  }

  .nav-menu {
    position: absolute;
    top: 80px;
    right: 20px;
    width: 250px;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    padding: 1.5rem;
    display: none;
    z-index: 1000;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-link {
    color: #333;
    padding: 0.8rem 0;
    background: transparent;
    border-bottom: 1px solid #ddd;
  }

  .nav-link:hover, .nav-link.active {
    background: rgba(78, 205, 196, 0.15);
    color: #4ECDC4;
  }
}
.pagination-controls {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;     /* Centers vertically (if needed) */
  gap: 1rem;               /* Space between buttons and text */
  margin-top: 1.5rem;
  text-align: center;
}

@media (max-width: 600px) {
  .pagination-controls {
    flex-direction: row;
    justify-content: center;
    gap: 0.8rem;
    text-align: center;
  }

  .pagination-controls .btn {
    padding: 0.4rem 0.6rem; /* smaller padding */
    font-size: 1.2rem;      /* smaller font */
    min-width: unset;       /* prevent oversized buttons */
  }

  #pageIndicator {
    font-size: 0.9rem;
    margin: 0 0.5rem;
  }

  .btn-label {
    display: none;
  }
}
/* 🛒 Amazon Products Section */
.amazon-products {
  background: transparent;
  padding: 4rem 2rem;
  margin: 2rem 0;
}

.amazon-products h2 {
  color: #FF6B6B;
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 3rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}
.amazon-products .card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 1.5rem;
}

.amazon-products .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.amazon-products .card-img-top {
  border-radius: 15px;
  max-height: 180px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.amazon-products .card-title {
  font-size: 1.2rem;
  color: #4ECDC4;
  margin-bottom: 0.5rem;
}

.amazon-products .card-text {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
}

.amazon-products .btn-warning {
  background: linear-gradient(45deg, #FFEAA7, #FAB1A0);
  color: #333;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  padding: 0.6rem 1.2rem;
  transition: all 0.3s ease;
}

.amazon-products .btn-warning:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

 .blog-intro {
    text-align: left; /* forces all text inside to align left */
    max-width: 800px; /* optional: keeps text from stretching too wide */
    margin: 0 auto;   /* optional: centers the whole section on the page */
    padding: 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }

  .blog-intro-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .blog-intro-items {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .intro-item-label {
    
    margin-top: 10px;
  }

  .blog-intro-footer {
    margin-top: 20px;
   
  }
