/* Base Styles */
:root {
  --primary-color: #2196f3;
  --primary-dark: #1976d2;
  --primary-light: #bbdefb;
  --secondary-color: #ff9800;
  --secondary-dark: #f57c00;
  --accent-color: #4caf50;
  --text-dark: #212121;
  --text-medium: #424242;
  --text-light: #757575;
  --border-color: #e0e0e0;
  --background-light: #f5f5f5;
  --background-white: #ffffff;
  --shadow-light: 0 2px 5px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 10px rgba(0, 0, 0, 0.15);
  --shadow-dark: 0 8px 16px rgba(0, 0, 0, 0.2);
  --border-radius: 8px;
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --font-family-primary: 'Montserrat', sans-serif;
  --font-family-secondary: 'Poppins', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-primary);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--background-light);
  overflow-x: hidden;
}

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

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

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

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

.btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
  text-align: center;
  font-size: 16px;
}

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

section {
  padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-secondary);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 20px;
}

ul, ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

li {
  margin-bottom: 10px;
}

/* Header */
header {
  background-color: var(--background-white);
  box-shadow: var(--shadow-light);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

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

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
}

nav ul li {
  margin: 0 15px;
  margin-bottom: 0;
}

nav ul li a {
  color: var(--text-dark);
  font-weight: 600;
  position: relative;
  padding: 5px 0;
}

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

nav ul li a:hover:after,
nav ul li a.active:after {
  width: 100%;
}

nav ul li a.active {
  color: var(--primary-color);
}

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

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

/* Hero Section */
.hero {
  background: linear-gradient(rgba(33, 150, 243, 0.8), rgba(33, 150, 243, 0.7)), url('../images/1.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 150px 0;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out;
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
  animation: fadeInUp 1s ease-out 0.2s;
  animation-fill-mode: both;
}

.hero .btn {
  animation: fadeInUp 1s ease-out 0.4s;
  animation-fill-mode: both;
  margin: 0 10px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Featured Posts Section */
.featured-posts {
  padding: 80px 0;
  background-color: var(--background-white);
}

.featured-posts h2 {
  text-align: center;
  margin-bottom: 50px;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.post-card {
  background-color: var(--background-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.post-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.post-card:hover .post-image img {
  transform: scale(1.05);
}

.post-content {
  padding: 20px;
}

.post-content h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.post-content p {
  color: var(--text-medium);
  margin-bottom: 15px;
}

.read-more {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
}

.read-more:after {
  content: '→';
  margin-left: 5px;
  transition: transform var(--transition-fast);
}

.read-more:hover:after {
  transform: translateX(5px);
}

.view-all {
  text-align: center;
  margin-top: 40px;
}

/* Vacation Tips Section */
.vacation-tips {
  background-color: var(--background-light);
  padding: 80px 0;
}

.vacation-tips h2 {
  text-align: center;
  margin-bottom: 50px;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.tip-card {
  background-color: var(--background-white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  text-align: center;
  transition: transform var(--transition-medium);
}

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

.tip-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.tip-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.tip-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
}

/* CTA Section */
.cta {
  background: linear-gradient(rgba(255, 152, 0, 0.9), rgba(255, 152, 0, 0.8)), url('../images/2.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 0;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 16px;
}

.newsletter-form button {
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: white;
  border: none;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.newsletter-form button:hover {
  background-color: #388e3c;
}

/* Footer */
footer {
  background-color: #212121;
  color: white;
  padding: 60px 0 20px;
}

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

.footer-logo img {
  height: 50px;
  margin-bottom: 15px;
}

.footer-logo p {
  color: #b0bec5;
  font-size: 0.9rem;
}

.footer-links h3, .footer-contact h3, .footer-social h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: white;
}

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

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: #b0bec5;
  transition: color var(--transition-fast);
}

.footer-links ul li a:hover {
  color: white;
}

.footer-contact p {
  display: flex;
  align-items: center;
  color: #b0bec5;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.footer-contact p svg {
  margin-right: 10px;
  flex-shrink: 0;
}

.social-icons {
  display: flex;
  gap: 15px;
}

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

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

.social-icons svg {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #b0bec5;
}

/* Blog Page */
.blog-header {
  background: linear-gradient(rgba(33, 150, 243, 0.8), rgba(33, 150, 243, 0.7)), url('../images/3.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 0;
}

.blog-header h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.blog-header p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.blog-posts {
  padding: 80px 0;
  background-color: var(--background-white);
}

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

.post-date, .post-category, .post-author {
  display: flex;
  align-items: center;
}

.post-category {
  background-color: var(--primary-light);
  color: var(--primary-dark);
  padding: 3px 10px;
  border-radius: 30px;
}

/* Destinations Page */
.destination-header {
  background: linear-gradient(rgba(76, 175, 80, 0.8), rgba(76, 175, 80, 0.7)), url('../images/12.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 0;
}

.destination-header h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.destination-header p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.category-nav {
  margin-bottom: 40px;
}

.category-nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  gap: 20px;
}

.category-nav ul li {
  margin-bottom: 0;
}

.category-nav ul li a {
  display: block;
  padding: 10px 20px;
  background-color: var(--background-light);
  border-radius: 30px;
  color: var(--text-medium);
  font-weight: 600;
  transition: all var(--transition-fast);
}

.category-nav ul li.active a,
.category-nav ul li a:hover {
  background-color: var(--primary-color);
  color: white;
}

.destination-section {
  padding: 60px 0;
  background-color: var(--background-white);
}

.destination-section:nth-child(odd) {
  background-color: var(--background-light);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

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

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

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

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.destination-card:hover .destination-image img {
  transform: scale(1.05);
}

.destination-content {
  padding: 20px;
}

.destination-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.destination-content p {
  color: var(--text-medium);
  margin-bottom: 15px;
}

.destination-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.destination-meta span {
  display: flex;
  align-items: center;
}

.destination-meta svg {
  margin-right: 5px;
}

.destination-map {
  padding: 80px 0;
  background-color: var(--background-light);
}

.destination-map h2 {
  text-align: center;
  margin-bottom: 40px;
}

.map-container {
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow-medium);
  border-radius: var(--border-radius);
  overflow: hidden;
}

/* About Page */
.about-header {
  background: linear-gradient(rgba(255, 152, 0, 0.8), rgba(255, 152, 0, 0.7)), url('../images/13.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 0;
}

.about-header h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.about-header p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.about-story {
  padding: 80px 0;
  background-color: var(--background-white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.our-mission {
  background-color: var(--background-light);
  padding: 80px 0;
  text-align: center;
}

.our-mission h2 {
  margin-bottom: 50px;
}

.mission-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.mission-item {
  background-color: var(--background-white);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

.mission-icon {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.mission-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.team-section {
  padding: 80px 0;
  background-color: var(--background-white);
}

.team-section h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

.team-card {
  background-color: var(--background-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  text-align: center;
  padding-bottom: 20px;
  transition: transform var(--transition-medium);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

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

.team-card h3 {
  font-size: 1.3rem;
  margin: 20px 0 5px;
}

.team-card p {
  padding: 0 20px;
  margin-bottom: 15px;
}

.team-card p:nth-of-type(1) {
  color: var(--primary-color);
  font-weight: 600;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

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

.team-social a:hover {
  background-color: var(--primary-color);
}

.team-social a:hover svg {
  color: white;
}

.testimonials {
  background-color: var(--background-light);
  padding: 80px 0;
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 50px;
}

.testimonial-slider {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 30px;
}

.testimonial-item {
  background-color: var(--background-white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  text-align: left;
  position: relative;
}

.testimonial-quote {
  color: var(--primary-light);
  margin-bottom: 20px;
}

.testimonial-item p {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author span:first-child {
  font-weight: 600;
  color: var(--text-dark);
}

.testimonial-author span:last-child {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Contact Page */
.contact-header {
  background: linear-gradient(rgba(33, 150, 243, 0.8), rgba(33, 150, 243, 0.7)), url('../images/contact-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 0;
}

.contact-header h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.contact-header p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.contact-content {
  padding: 80px 0;
  background-color: var(--background-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2, .contact-form-container h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.contact-details {
  margin: 30px 0;
}

.contact-item {
  display: flex;
  margin-bottom: 25px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-light);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-text h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.contact-text p {
  color: var(--text-medium);
}

.social-connect h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.contact-form {
  background-color: var(--background-light);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

.form-group {
  margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: var(--font-family-primary);
  font-size: 16px;
}

.form-group textarea {
  resize: vertical;
}

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

.checkbox-group input {
  width: auto;
  margin-right: 10px;
  margin-top: 5px;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
  flex: 1;
}

.contact-form .btn {
  margin-top: 10px;
  width: 100%;
}

.map-section {
  padding: 80px 0;
  background-color: var(--background-light);
}

.map-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* Blog Post */
.blog-post {
  padding: 80px 0;
  background-color: var(--background-white);
}

.post-header {
  margin-bottom: 30px;
}

.post-header h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.post-featured-image {
  margin-bottom: 40px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.post-intro {
  font-size: 1.2rem;
  color: var(--text-medium);
  border-left: 3px solid var(--primary-color);
  padding-left: 20px;
  margin-bottom: 30px;
}

.blog-post h2 {
  font-size: 1.8rem;
  margin: 40px 0 20px;
  color: var(--primary-dark);
}

.blog-post h3 {
  font-size: 1.4rem;
  margin: 30px 0 15px;
}

.post-image {
  margin: 30px 0;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.conclusion {
  background-color: var(--background-light);
  padding: 30px;
  border-radius: var(--border-radius);
  margin: 40px 0;
}

.conclusion p:last-child {
  margin-bottom: 0;
}

.post-tags {
  margin-top: 40px;
}

.post-tags span {
  font-weight: 600;
  margin-right: 10px;
}

.post-tags a {
  display: inline-block;
  background-color: var(--primary-light);
  color: var(--primary-dark);
  padding: 5px 12px;
  border-radius: 20px;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  transition: background-color var(--transition-fast);
}

.post-tags a:hover {
  background-color: var(--primary-color);
  color: white;
}

.post-navigation {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.post-nav-links {
  display: flex;
  justify-content: space-between;
}

.prev-post, .next-post, .back-to-blog {
  color: var(--text-medium);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.prev-post:hover, .next-post:hover, .back-to-blog:hover {
  color: var(--primary-color);
}

.related-posts {
  margin-top: 60px;
}

.related-posts h3 {
  text-align: center;
  margin-bottom: 30px;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.related-post {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: transform var(--transition-medium);
}

.related-post:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.related-post a {
  display: block;
  color: var(--text-dark);
}

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

.related-post h4 {
  padding: 15px;
  font-size: 1rem;
  margin-bottom: 0;
}

/* 3D Button */
.question-3d {
  padding: 60px 0;
  text-align: center;
}

.question-button-3d {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--secondary-color);
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 0 var(--secondary-dark), 0 15px 20px rgba(0,0,0,0.15);
  transition: transform 0.1s, box-shadow 0.1s;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.question-button-3d:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 0 var(--secondary-dark), 0 15px 20px rgba(0,0,0,0.15);
}

.question-button-3d:active {
  transform: translateY(6px);
  box-shadow: 0 2px 0 var(--secondary-dark), 0 5px 10px rgba(0,0,0,0.15);
}

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

.modal.show {
  display: flex;
}

.modal-content {
  background-color: var(--background-white);
  border-radius: var(--border-radius);
  padding: 30px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: var(--shadow-dark);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  transition: color var(--transition-fast);
}

.close-modal:hover {
  color: var(--text-dark);
}

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

.thank-you-message svg {
  color: var(--accent-color);
  margin-bottom: 20px;
}

.thank-you-message h2 {
  margin-bottom: 15px;
}

.thank-you-message p {
  margin-bottom: 25px;
}

.close-btn {
  background-color: var(--primary-color);
  padding: 10px 25px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--background-white);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}

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

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

.cookie-content p {
  margin-bottom: 15px;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.cookie-btn {
  padding: 8px 16px;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: background-color var(--transition-fast);
}

.cookie-btn.accept {
  background-color: var(--accent-color);
  color: white;
}

.cookie-btn.accept:hover {
  background-color: #388e3c;
}

.cookie-btn.customize {
  background-color: var(--background-light);
  color: var(--text-dark);
}

.cookie-btn.customize:hover {
  background-color: #e0e0e0;
}

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

.cookie-btn.decline:hover {
  background-color: var(--background-light);
}

.cookie-buttons a {
  margin-left: 15px;
  font-size: 14px;
}

/* Ask a Question Button */
.ask-question-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--secondary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
  text-align: center;
  font-size: 16px;
  margin-left: 10px;
}

.ask-question-btn:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-image {
    order: -1;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  header .container {
    padding: 15px;
  }
  
  nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 80px);
    background-color: var(--background-white);
    box-shadow: var(--shadow-medium);
    transition: left var(--transition-medium);
    z-index: 900;
  }
  
  nav.active {
    left: 0;
  }
  
  nav ul {
    flex-direction: column;
    padding: 20px;
  }
  
  nav ul li {
    margin: 15px 0;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  .posts-grid, .tips-grid, .destinations-grid, .team-grid, .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-nav-links {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  
  .testimonial-slider {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo img {
    margin: 0 auto 15px;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .footer-contact p {
    justify-content: center;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: var(--border-radius);
    margin-bottom: 10px;
  }
  
  .newsletter-form button {
    border-radius: var(--border-radius);
    width: 100%;
  }
  
  .hero .btn, .ask-question-btn {
    display: block;
    margin: 10px auto;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.7rem;
  }
  
  .post-header h1 {
    font-size: 2.2rem;
  }
  
  .testimonial-item {
    padding: 30px 20px;
  }
  
  .cookie-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons a {
    margin-left: 0;
    margin-top: 10px;
    text-align: center;
  }
}
