/* Global Styles */
:root {
  --primary-color: #1e88e5;
  --primary-dark: #1565c0;
  --secondary-color: #26a69a;
  --accent-color: #ff9800;
  --text-color: #333;
  --text-light: #666;
  --text-white: #fff;
  --bg-light: #f5f5f5;
  --bg-white: #fff;
  --border-color: #e0e0e0;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
  --transition: all 0.3s ease;
  --container-width: 1200px;
  --header-height: 80px;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--bg-white);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

.btn.primary {
  background-color: var(--primary-color);
  color: var(--text-white);
}

.btn.primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn.secondary {
  background-color: var(--secondary-color);
  color: var(--text-white);
}

.btn.secondary:hover {
  background-color: #1c8079;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn.tertiary {
  background-color: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-color);
}

.btn.tertiary:hover {
  background-color: var(--bg-light);
  transform: translateY(-2px);
}

.center {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  color: var(--text-color);
  font-weight: 600;
  padding: 10px 0;
  position: relative;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin: 3px 0;
  transition: var(--transition);
}

/* Hero Sections */
.hero,
.blog-hero,
.about-hero,
.contact-hero {
  height: 500px;
  background-color: #f0f8ff;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/16.jpg');
  background-size: cover;
  background-position: center;
  color: var(--text-white);
  display: flex;
  align-items: center;
  text-align: center;
  margin-top: var(--header-height);
}

.hero h1,
.blog-hero h1,
.about-hero h1,
.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.hero p,
.blog-hero p,
.about-hero p,
.contact-hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* Featured Destinations */
.featured-destinations {
  background-color: var(--bg-light);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.destination-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

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

.destination-info {
  padding: 1.5rem;
}

.destination-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.read-more {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--primary-color);
}

.read-more:hover {
  color: var(--primary-dark);
}

/* Event Countdown & 3D Button */
.event-countdown {
  background: linear-gradient(135deg, #1976d2, #64b5f6);
  color: var(--text-white);
  text-align: center;
  padding: 4rem 0;
}

.event-countdown h2,
.event-countdown p {
  color: var(--text-white);
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-item span {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.countdown-item p {
  font-size: 1rem;
  margin-bottom: 0;
}

.three-d-button-container {
  perspective: 800px;
  margin-top: 2rem;
}

.three-d-button {
  background: var(--accent-color);
  color: var(--text-white);
  border: none;
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: var(--border-radius);
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  box-shadow: 0 10px 0 #e65100, 0 15px 20px rgba(0, 0, 0, 0.3);
}

.three-d-button:hover {
  transform: translateY(-5px) rotateX(10deg);
  box-shadow: 0 15px 0 #e65100, 0 20px 25px rgba(0, 0, 0, 0.3);
}

.three-d-button:active {
  transform: translateY(5px) rotateX(-10deg);
  box-shadow: 0 5px 0 #e65100, 0 10px 15px rgba(0, 0, 0, 0.3);
}

/* Testimonials */
.testimonials {
  background-color: var(--bg-white);
}

.testimonial-slider {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
}

.testimonial {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  min-width: 300px;
  max-width: 500px;
  box-shadow: var(--shadow);
}

.quote {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.testimonial-author {
  margin-top: 1.5rem;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.testimonial-author p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Latest Blog */
.latest-blog {
  background-color: var(--bg-light);
}

.blog-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.blog-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

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

.blog-info {
  padding: 1.5rem;
}

.blog-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  background-color: #1a237e;
  color: var(--text-white);
  padding: 4rem 0 2rem;
}

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

.footer-logo img {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-links h3,
.footer-contact h3 {
  color: var(--text-white);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a,
.footer-contact a {
  color: #b3e5fc;
  transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--text-white);
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.footer-contact svg {
  margin-right: 0.5rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-white);
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: var(--text-white);
  padding: 1rem;
  z-index: 1001;
  display: none;
}

.cookie-notice.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-content p {
  margin-bottom: 0;
  flex: 1;
  min-width: 300px;
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
}

.cookie-notice a {
  color: #b3e5fc;
  text-decoration: underline;
  margin-left: 1rem;
}

.cookie-notice a:hover {
  color: var(--text-white);
}

/* Blog Page Styles */
.blog-content {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.blog-posts {
  flex: 2;
}

.blog-sidebar {
  flex: 1;
}

.blog-post {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

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

.post-content {
  padding: 2rem;
}

.post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

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

.post-content h3 {
  font-size: 1.4rem;
  margin: 1.5rem 0 0.75rem;
}

.sidebar-widget {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}

.sidebar-widget h3 {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
}

.category-list {
  list-style: none;
}

.category-list li {
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
}

.category-list a {
  display: flex;
  justify-content: space-between;
}

.popular-post {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.popular-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.popular-post img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

.popular-post-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.popular-post-info span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

/* About Page Styles */
.our-story {
  background-color: var(--bg-white);
}

.story-content {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2rem;
  align-items: center;
}

.story-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.our-mission {
  background-color: var(--bg-light);
  text-align: center;
}

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

.value-card {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.value-icon {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.team-section {
  background-color: var(--bg-white);
  text-align: center;
}

.team-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
}

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

.team-member {
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.team-member img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-member h3,
.team-member p {
  padding: 0 1rem;
}

.team-member h3 {
  margin-top: 1rem;
  margin-bottom: 0.25rem;
}

.team-member p:first-of-type {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin: 1rem 0 1.5rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--bg-light);
  border-radius: 50%;
  color: var(--primary-color);
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  color: var(--text-white);
  transform: translateY(-3px);
}

.achievements {
  background-color: var(--bg-light);
  text-align: center;
}

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

.achievement-card {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.achievement-icon {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.cta-section {
  background: linear-gradient(135deg, #1976d2, #64b5f6);
  color: var(--text-white);
  text-align: center;
  padding: 4rem 0;
}

.cta-section h2,
.cta-section p {
  color: var(--text-white);
}

/* Contact Page Styles */
.contact-info {
  background-color: var(--bg-white);
}

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

.contact-card {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

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

.contact-icon {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-form-section {
  background-color: var(--bg-light);
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
}

.form-group textarea {
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-group input {
  width: auto;
  margin-top: 0.3rem;
}

.form-submit {
  grid-column: span 2;
  text-align: center;
  margin-top: 1rem;
}

.map-section {
  background-color: var(--bg-white);
}

.map-container {
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 2rem;
}

.map-placeholder {
  height: 100%;
  width: 100%;
  position: relative;
  background-color: var(--bg-light);
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
}

.map-overlay p {
  color: var(--text-white);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.faq-section {
  background-color: var(--bg-light);
}

.faq-container {
  max-width: 800px;
  margin: 2rem auto 0;
}

.faq-item {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
}

.faq-toggle {
  transition: var(--transition);
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1002;
  align-items: center;
  justify-content: center;
}

.modal.show {
  display: flex;
}

.modal-content {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 100%;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
}

.thank-you-message {
  text-align: center;
}

.thank-you-message svg {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .story-content {
    grid-template-columns: 1fr;
  }
  
  .blog-content {
    flex-direction: column;
  }
  
  .countdown {
    gap: 1rem;
  }
  
  .countdown-item span {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.7rem;
  }
  
  .hero,
  .blog-hero,
  .about-hero,
  .contact-hero {
    height: 400px;
  }
  
  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 80%;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-white);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-links li {
    margin: 1rem 0;
  }
  
  .hamburger {
    display: flex;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .form-submit {
    grid-column: span 1;
  }
}

@media (max-width: 576px) {
  section {
    padding: 60px 0;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .countdown {
    flex-wrap: wrap;
    justify-content: space-around;
  }
  
  .countdown-item {
    flex-basis: 40%;
    margin-bottom: 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}
