/* CSS variables for consistent colors */
:root {
  --primary-color: #0EA5E9; /* Vibrant blue for trust and travel */
  --primary-dark: #0284C7;
  --primary-light: #38BDF8;
  --secondary-color: #C62828; /* Red for logo color */
  --secondary-dark: #C62828;
  --secondary-light: #EF4444;
  --accent-color: #10B981; /* Emerald green for nature and growth */
  --accent-dark: #059669;
  --accent-light: #34D399;
  --background-color: #F8FAFC; /* Light neutral */
  --text-color: #1E293B; /* Dark slate */
  --heading-color: #0F172A; /* Dark navy */
  --header-footer-color: #0F172A; /* Dark navy */
  --border-color: #CBD5E1;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* Basic reset and typography */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
}

#page.site {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

#main.site-main {
  margin: 0;
  padding: 0;
  width: 100%;
}

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

/* Main content layout */
.site-content {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  gap: 40px;
}

.content-area {
  flex: 1;
  min-width: 0;
}

.woocommerce-page-template .content-area {
  flex: 1 0 100%;
  max-width: 100%;
}

.widget-area {
  width: 300px;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 30px;
  align-self: flex-start;
}

.woocommerce-page-template .widget-area {
  display: none;
}

/* Single post styling */
.post-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.entry-title {
  margin-top: 0;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.entry-meta {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.entry-meta a {
  color: var(--primary-color);
  text-decoration: none;
}

.entry-meta a:hover {
  text-decoration: underline;
}

.entry-content {
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.entry-content p {
  margin-bottom: 20px;
}

.entry-content h2 {
  margin-top: 30px;
}

.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.read-more-link {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 16px;
  border: 2px solid var(--primary-color);
  border-radius: 4px;
  transition: var(--transition);
}

.read-more-link:hover {
  background-color: var(--primary-color);
  color: white;
}

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

.post-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.entry-footer {
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  color: #64748b;
  font-size: 0.9rem;
}

.entry-footer a {
  color: var(--primary-color);
  text-decoration: none;
}

.entry-footer a:hover {
  text-decoration: underline;
}

/* Author bio section */
.author-bio {
  display: flex;
  gap: 20px;
  background: #f1f5f9;
  padding: 25px;
  border-radius: 8px;
  margin: 30px 0;
}

.author-avatar img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
}

.author-info h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.author-info p {
  margin-bottom: 15px;
  color: #64748b;
}

.author-social {
  display: flex;
  gap: 10px;
}

.author-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition);
}

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

/* Comments section */
.comments-area {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.comments-title {
  margin-top: 0;
  margin-bottom: 30px;
  color: var(--heading-color);
}

.comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}

.comment-body {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
}

.comment-author {
  margin-bottom: 10px;
}

.comment-author img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

.comment-author .fn {
  font-weight: 600;
  font-style: normal;
}

.comment-author .fn a {
  color: var(--heading-color);
  text-decoration: none;
}

.comment-author .fn a:hover {
  color: var(--primary-color);
}

.comment-metadata {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 15px;
}

.comment-metadata a {
  color: var(--primary-color);
  text-decoration: none;
}

.comment-metadata a:hover {
  text-decoration: underline;
}

.comment-content {
  flex: 1;
}

.comment-reply-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.comment-reply-link:hover {
  text-decoration: underline;
}

.comment-respond {
  margin-top: 30px;
}

.comment-form {
  display: grid;
  gap: 20px;
}

.comment-form-comment textarea {
  min-height: 150px;
}

.form-submit {
  margin-top: 10px;
}

/* Widget styles */
.widget {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
}

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

.widget-title {
  margin-top: 0;
  margin-bottom: 20px;
  color: var(--heading-color);
  font-size: 1.4rem;
}

.widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget ul li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

.widget ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

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

.widget a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Top bar styles */
.top-bar {
  background-color: var(--header-footer-color);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-info, .social-media {
  flex: 1;
}

.contact-info {
  color: #94A3B8;
}

.contact-info a {
  color: #E2E8F0;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.contact-info a:hover {
  color: var(--secondary-light);
  text-decoration: none;
}

/* Main header styles */
.main-header {
  background: white; /* Changed from dark gradient to white */
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
  border-bottom: 1px solid #e2e8f0;
  margin: 0; /* Remove any default margin */
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-branding .site-title {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
}

.site-branding .site-title a {
  color: var(--heading-color); /* Changed from white gradient to dark color */
  text-decoration: none;
  background: none; /* Removed gradient */
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  background-clip: initial;
  font-weight: 800;
  transition: var(--transition);
}

.site-branding .site-title a:hover {
  color: var(--primary-color); /* Added hover effect */
}

.site-branding .site-description {
  margin: 5px 0 0;
  color: #64748b; /* Changed from light gray to medium gray */
  font-size: 15px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
}

.main-navigation {
  flex: 1;
  text-align: center;
}

.main-navigation ul {
  display: flex;
  justify-content: center;
  list-style: none;
}

.main-navigation ul li {
  margin: 0 18px;
  position: relative;
}

.main-navigation ul li a {
  color: var(--heading-color); /* Changed from light gray to dark color */
  text-decoration: none;
  font-weight: 600;
  padding: 12px 0;
  display: block;
  transition: var(--transition);
  font-family: 'Montserrat', sans-serif; /* Kept the font */
  position: relative;
  font-size: 16px; /* Increased font size slightly */
}

.main-navigation ul li a:hover {
  color: var(--primary-color); /* Changed from amber to primary blue */
}

.main-navigation ul li.current-menu-item a {
  color: var(--primary-color); /* Highlight current page */
}

.main-navigation ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary-color); /* Changed from amber to primary blue */
  transition: var(--transition);
  border-radius: 2px;
}

.main-navigation ul li a:hover:after {
  width: 100%;
}

.main-navigation ul li.current-menu-item a:after {
  width: 100%; /* Always show underline for current page */
}

/* Footer styles */
.site-footer {
  background: linear-gradient(135deg, var(--header-footer-color) 0%, #1e293b 100%);
  color: white;
  margin-top: 0; /* Remove the 50px margin that was causing extra space */
  position: relative;
}

.site-footer:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.footer-widgets {
  padding: 35px 0 20px; /* Reduced from 70px 0 40px to 35px 0 20px */
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-column h3 {
  margin-top: 0;
  color: white;
  position: relative;
  padding-bottom: 15px;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
}

.footer-column h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.footer-column p {
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

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

.footer-column ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: var(--transition);
  display: block;
  padding: 5px 0;
  font-weight: 500;
  position: relative;
}

.footer-column ul li a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-column ul li a:before {
  content: '→';
  margin-right: 10px;
  color: var(--primary-color);
  opacity: 0;
  transition: var(--transition);
}

.footer-column ul li a:hover:before {
  opacity: 1;
}

/* Footer Newsletter */
.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-newsletter input {
  padding: 12px 15px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-family: 'Poppins', sans-serif;
}

.footer-newsletter input::placeholder {
  color: #94a3b8;
}

.footer-newsletter input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.3);
}

.footer-newsletter .button.secondary {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 12px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-newsletter .button.secondary:hover {
  background: var(--primary-color);
  color: white;
}

.footer-newsletter .button.secondary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.contact-info p {
  color: #cbd5e1;
  margin: 10px 0;
  font-size: 0.9rem;
}

.contact-info i {
  color: var(--primary-color);
  width: 20px;
  text-align: center;
}

/* Footer Bottom */
.footer-bottom {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.copyright {
  color: white;
  font-size: 14px;
  margin: 0;
}

.copyright a {
  color: white;
  text-decoration: none;
}

.copyright a:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  gap: 25px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 14px 28px;
  background-color: var(--primary-color);
  color: white; /* Keep white text on primary color background */
  text-decoration: none;
  border-radius: 4px;
  font-weight: 700;
  text-align: center;
  transition: var(--transition);
  border: 2px solid var(--primary-color);
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(14, 165, 233, 0.3);
  font-family: 'Montserrat', sans-serif;
}

.button:hover {
  background-color: white; /* Change to white background on hover */
  color: var(--primary-color); /* Use primary color for text on white background */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(14, 165, 233, 0.4);
}

.button.secondary {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color); /* Primary color text on transparent background */
}

.button.secondary:hover {
  background-color: var(--primary-color); /* Primary color background on hover */
  color: white; /* White text on primary color background */
}

.button.large {
  padding: 16px 40px;
  font-size: 18px;
}

/* Form elements */
input, select, textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
  transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

/* Cards and sections */
.card {
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

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

/* Responsive styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .container,
  .header-content,
  .top-bar-content,
  .footer-content,
  .footer-bottom-content,
  .site-content {
    padding: 0 15px;
  }
  
  .main-header {
    padding: 15px 0;
  }
  
  .site-branding .site-title {
    font-size: 24px;
  }
  
  .main-navigation ul li {
    margin: 0 10px;
  }
  
  .header-cta .button {
    padding: 12px 25px;
    font-size: 14px;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .site-content {
    padding: 30px 15px;
    gap: 30px;
  }
  
  .widget-area {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .top-bar-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .social-media {
    text-align: center;
    margin-top: 0;
  }
  
  .header-content {
    flex-direction: column;
    gap: 15px;
  }
  
  .main-navigation {
    margin: 15px 0;
    text-align: center;
    width: 100%;
  }
  
  .main-navigation ul {
    flex-direction: column;
    gap: 5px;
  }
  
  .main-navigation ul li {
    margin: 5px 0;
  }
  
  .menu-toggle {
    display: flex;
    position: absolute;
    top: 20px;
    right: 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .site-branding .site-title {
    font-size: 22px;
  }
  
  .site-branding .site-description {
    font-size: 13px;
  }
  
  .social-icon {
    width: 36px;
    height: 36px;
    line-height: 36px;
  }
  
  .site-content {
    flex-direction: column;
  }
  
  .content-area {
    order: 2;
  }
  
  .widget-area {
    order: 1;
    margin-bottom: 30px;
  }
  
  .author-bio {
    flex-direction: column;
  }
  
  .comment-body {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .container,
  .header-content,
  .top-bar-content,
  .footer-content,
  .footer-bottom-content,
  .site-content {
    padding: 0 10px;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.4rem;
  }
  
  .button {
    padding: 12px 20px;
    font-size: 15px;
  }
  
  .top-bar {
    padding: 8px 0;
  }
  
  .contact-info,
  .social-media {
    font-size: 13px;
  }
  
  .social-icon {
    width: 32px;
    height: 32px;
    line-height: 32px;
    margin-left: 8px;
  }
  
  .main-header {
    padding: 12px 0;
  }
  
  .site-branding .site-title {
    font-size: 20px;
  }
  
  .menu-toggle {
    width: 36px;
    height: 36px;
  }
  
  .footer-widgets {
    padding: 50px 0 30px;
  }
  
  .footer-column h3 {
    font-size: 1.3rem;
  }
  
  .footer-newsletter .button.secondary {
    padding: 10px;
  }
  
  .footer-bottom {
    padding: 20px 0;
  }
  
  .footer-links {
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .footer-links a {
    font-size: 13px;
  }
  
  .site-content {
    padding: 20px 10px;
    gap: 20px;
  }
}