/* === Theme Variables === */
:root {
  --color-primary: #e67e22;
  --color-text: #222222;
  --color-footer-bg: #f4f4f4;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-light: #f4f4f4;
  --color-muted: #777777;
}

.theme-orange {
  --color-primary: #e67e22;
  --color-text: #222222;
  --color-footer-bg: #f4f4f4;
}

.theme-blue {
  --color-primary: #3498db;
  --color-text: #222222;
  --color-footer-bg: #f4f4f4;
}

.theme-teal {
  --color-primary: #1abc9c;
  --color-text: #222222;
  --color-footer-bg: #f4f4f4;
}

/* === Base === */
/* CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  line-height: 1.6;
  background: #fff;
  color: #222;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

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

/* === Layout === */
/* === Theme Variables === */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #cccccc;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-header .site-branding {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.site-header .site-branding .custom-logo {
  max-height: 80px;
}
.site-header .site-branding .site-title a {
  font-family: "Poppins", sans-serif;
  color: var(--color-text);
  text-decoration: none;
}
.site-header .site-branding .site-title a:hover {
  color: var(--color-primary);
}
.site-header .site-branding .site-description {
  color: #777777;
}
.site-header .main-navigation ul.primary-menu {
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.site-header .main-navigation ul.primary-menu li a {
  color: var(--color-text);
  font-weight: 600;
  padding: 0.5rem 1rem;
  text-decoration: none;
}
.site-header .main-navigation ul.primary-menu li a:hover {
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .main-navigation ul.primary-menu {
    flex-direction: column;
    gap: 1rem;
  }
}
/* === Theme Variables === */
.site-footer {
  background: #f4f4f4;
  color: var(--color-text);
  padding: 2rem 1rem;
}
.site-footer .footer-widgets {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid #cccccc;
  padding-top: 2rem;
}
.site-footer .footer-widgets .footer-widget {
  background: #ffffff;
  padding: 1rem;
  border-radius: 5px;
  flex: 1 1 calc(33.333% - 4rem);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.site-footer .footer-widgets .footer-widget h4 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.site-footer .footer-widgets .footer-widget ul {
  padding-left: 1rem;
}
.site-footer .footer-widgets .footer-widget ul li {
  margin-bottom: 0.25rem;
}
.site-footer .footer-widgets .footer-widget ul li a {
  color: var(--color-text);
  text-decoration: none;
}
.site-footer .footer-widgets .footer-widget ul li a:hover {
  color: var(--color-primary);
}
.site-footer .footer-menu {
  max-width: 1200px;
  margin: 2rem auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  border-top: 1px solid #cccccc;
  padding-top: 1rem;
}
.site-footer .footer-menu a {
  color: var(--color-text);
  text-decoration: none;
}
.site-footer .footer-menu a:hover {
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .footer-widgets {
    flex-direction: column;
  }
  .footer-widget {
    flex: 1 1 100%;
  }
}
.main-content {
  padding: 2rem;
}

/* === Components === */
.hero {
  padding: 4rem 2rem;
  text-align: center;
  background: url("https://source.unsplash.com/1600x400/?travel") center/cover no-repeat;
  color: #fff;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.hero a.btn {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.hero a.btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.dest-grid,
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem;
}

.search-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.search-bar input, .search-bar select, .search-bar button {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.search-bar button {
  background: var(--color-primary);
  color: #fff;
  border: none;
  cursor: pointer;
}

.dest-card, .post-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  text-align: left;
}
.dest-card img, .post-card img {
  width: 100%;
  height: auto;
  display: block;
}
.dest-card h3, .dest-card h4, .post-card h3, .post-card h4 {
  padding: 0.75rem 1rem;
  margin: 0;
}
.dest-card p, .post-card p {
  padding: 0 1rem 1rem;
  font-size: 0.9rem;
  color: #444;
}

.btn {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.button-outline {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}
.button-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

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

.featured-item {
  text-align: center;
  border: 1px solid #eee;
  padding: 1rem;
  border-radius: 8px;
  background-color: #fff;
  transition: transform 0.3s ease;
}
.featured-item img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}
.featured-item h3 {
  font-size: 1.2rem;
  margin: 0.8rem 0 0.4rem;
}
.featured-item p {
  font-size: 0.95rem;
  color: #666;
}
.featured-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.booking-form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
}
.booking-form h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #28a745;
}
.booking-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}
.booking-form button,
.booking-form .btn {
  display: block;
  width: 100%;
  background-color: #28a745;
  color: white;
  padding: 0.75rem;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  transition: background 0.3s;
}
.booking-form button:hover,
.booking-form .btn:hover {
  background-color: #218838;
}

.blog-archive {
  background: #f4f4f4;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.blog-archive .post-card {
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 5px;
  margin-bottom: 2rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.blog-archive .post-card h2.entry-title {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}
.blog-archive .post-card h2.entry-title a {
  color: inherit;
}
.blog-archive .post-card h2.entry-title a:hover {
  text-decoration: underline;
}
.blog-archive .post-card p {
  color: #555555;
  margin-bottom: 1rem;
}
.blog-archive .post-card .read-more {
  color: var(--color-primary);
  font-weight: bold;
  text-decoration: none;
}
.blog-archive .post-card .read-more:hover {
  text-decoration: underline;
}

/* Navigation Styles */
.site-nav ul,
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.site-nav li,
.footer-nav li {
  display: inline-block;
}

.site-nav a,
.footer-nav a {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
}

.site-nav a:hover,
.footer-nav a:hover {
  color: var(--color-primary);
}

.home .hero-section {
  text-align: center;
  padding: 5rem 2rem;
  background-color: #f9f9f9;
}
.home .hero-section h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.home .hero-section p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.home .hero-section .explore-button,
.home .hero-section .btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.home .hero-section .explore-button:hover,
.home .hero-section .btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.home .cta-section,
.home .cta-banner {
  text-align: center;
  background-color: #fff8f0;
  padding: 3rem 2rem;
  margin-top: 3rem;
  border-top: 3px solid var(--color-primary);
  border-bottom: 3px solid var(--color-primary);
}
.home .cta-section h2,
.home .cta-banner h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.home .cta-section .book-now-button,
.home .cta-section .btn,
.home .cta-banner .book-now-button,
.home .cta-banner .btn {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.home .cta-section .book-now-button:hover,
.home .cta-section .btn:hover,
.home .cta-banner .book-now-button:hover,
.home .cta-banner .btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.home h2.section-title {
  text-align: center;
  font-size: 2rem;
  margin: 2rem 0 1rem;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin: 2rem 0 1rem;
}/*# sourceMappingURL=main.css.map */