/* Travel Site Styles - Generated by TravelGen */
:root {
  --primary: #0066cc;
  --primary-dark: #0052a3;
  --secondary: #f8f9fa;
  --text: #1a1a2e;
  --text-light: #6b7280;
  --background: #ffffff;
  --card-bg: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --placeholder-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --radius: 12px;
  --radius-sm: 8px;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--background);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
}

.nav-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

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

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #1a1a2e 100%);
  background-size: cover;
  background-position: center;
  text-align: center;
  color: white;
  margin-top: 60px;
}

.hero-content {
  padding: 2rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-tagline {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-secondary:hover {
  background: var(--border);
}

.btn-large {
  padding: 0.5rem 1.5rem;
  font-size: 0.9375rem;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Sections */
.section {
  padding: 5rem 0;
  text-align: center;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.section-desc {
  text-align: center;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* Quick Info Cards */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 1.5rem;
}

.info-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid var(--border);
}

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1rem;
}

.info-icon svg {
  width: 32px;
  height: 32px;
}

.inline-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.25rem;
}

.info-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.info-card p {
  color: var(--text-light);
}

/* Attractions Grid */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.attractions-grid.large {
  grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
}

.attraction-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--border);
}

.attraction-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.attraction-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--placeholder-gradient);
}

.attraction-image.placeholder {
  background: var(--placeholder-gradient);
}

.attraction-content {
  padding: 1.5rem;
}

.attraction-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--secondary);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.attraction-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.attraction-content p {
  color: var(--text-light);
  font-size: 0.9375rem;
}

/* Booking Sections */
.booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.booking-category h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.booking-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.booking-item {
  display: block;
  padding: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s;
}

.booking-item:hover {
  border-color: var(--primary);
}

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

.booking-info p {
  color: var(--primary);
  font-weight: 600;
}

.booking-info .provider {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

/* Booking Cards Grid */
.booking-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 1.5rem;
}

.booking-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.booking-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--placeholder-gradient);
}

.booking-card-image.placeholder {
  background: var(--placeholder-gradient);
}

.booking-card-content {
  padding: 1.5rem;
}

.booking-card-content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.price-range {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.description {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.booking-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.provider-badge {
  font-size: 0.75rem;
  color: var(--text-light);
  background: var(--secondary);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

/* Booking Tabs */
.booking-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}

.booking-tab {
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
}

.booking-tab:hover {
  color: var(--text);
}

.booking-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Filter Tags */
.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter-tag {
  padding: 0.5rem 1rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-tag:hover,
.filter-tag.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Tips Accordion */
.tips-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  padding: 1.25rem;
  background: var(--card-bg);
  border: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
}

.accordion-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.accordion-icon svg {
  width: 20px;
  height: 20px;
}

.accordion-title {
  flex: 1;
  font-weight: 600;
}

.accordion-arrow {
  transition: transform 0.3s;
  font-size: 0.75rem;
}

.accordion-item.open .accordion-arrow {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: var(--secondary);
}

.accordion-item.open .accordion-content {
  max-height: 2000px;
}

.tips-list {
  padding: 1.5rem;
  list-style: none;
}

.tips-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.tips-list li:last-child {
  border-bottom: none;
}

.tips-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15em;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

/* About Page */
.about-container {
  max-width: 800px;
}

.about-content .lead {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.about-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.detail-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--secondary);
  border-radius: var(--radius-sm);
}

.detail-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.cta-section {
  text-align: center;
  padding: 3rem;
  background: var(--secondary);
  border-radius: var(--radius);
}

.cta-section h2 {
  margin-bottom: 0.5rem;
}

.cta-section p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

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

/* Page Content */
.page-content {
  padding-top: 100px;
  padding-bottom: 4rem;
  min-height: 70vh;
}

.page-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.page-subtitle {
  color: var(--text-light);
  text-align: center;
  margin-bottom: 3rem;
}

.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--secondary);
  border-radius: var(--radius);
  color: var(--text-light);
}

/* Widgets Section */
.widgets-section {
  margin-top: 4rem;
  padding: 2rem;
  background: var(--secondary);
  border-radius: var(--radius);
}

.widgets-section h2 {
  text-align: left;
  margin-bottom: 0.5rem;
}

.affiliate-notice {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.widget-container {
  min-height: 100px;
}

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

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-section h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.footer-section p {
  opacity: 0.7;
  font-size: 0.9375rem;
}

.footer-section a {
  display: block;
  color: white;
  text-decoration: none;
  opacity: 0.7;
  margin-bottom: 0.5rem;
  transition: opacity 0.2s;
}

.footer-section a:hover {
  opacity: 1;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.6;
}

.affiliate-disclosure {
  margin-top: 0.5rem;
  font-size: 0.75rem;
}

/* Header Controls */
.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Lights Out Toggle */
.lights-out-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.lights-out-toggle:hover {
  background: var(--secondary);
  border-color: var(--text-light);
}

.lights-out-toggle .icon-sun {
  display: none;
}

.lights-out-toggle .icon-moon {
  display: block;
}

/* Header Widgets */
.header-widgets {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.header-widget {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.header-widget .widget-icon {
  font-size: 1rem;
}

.header-widget .widget-value {
  font-weight: 500;
  color: var(--text);
}

/* Lights Out Mode - Pure Black & White */
body.lights-out {
  --primary: #ffffff;
  --primary-dark: #cccccc;
  --secondary: #111111;
  --text: #ffffff;
  --text-light: #888888;
  --background: #000000;
  --card-bg: #0a0a0a;
  --border: #222222;
  --shadow: 0 4px 6px -1px rgba(255, 255, 255, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(255, 255, 255, 0.05);
}

body.lights-out .site-header {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom-color: #222;
}

body.lights-out .site-logo {
  color: #fff;
}

body.lights-out .nav-link {
  color: #ccc;
}

body.lights-out .nav-link.active {
  color: #fff;
}

body.lights-out .mobile-menu-btn span {
  background: #fff;
}

body.lights-out .lights-out-toggle {
  border-color: #333;
}

body.lights-out .lights-out-toggle .icon-sun {
  display: block;
  stroke: #fff;
}

body.lights-out .lights-out-toggle .icon-moon {
  display: none;
}

body.lights-out .hero {
  background-color: #000;
}

body.lights-out .section {
  background: #000;
}

body.lights-out .map-section {
  background: #0a0a0a;
}

body.lights-out .info-card,
body.lights-out .attraction-card,
body.lights-out .booking-card,
body.lights-out .booking-item,
body.lights-out .tip-card {
  background: #0a0a0a;
  border-color: #222;
}

body.lights-out .attraction-category {
  background: #222;
  color: #fff;
}

body.lights-out .filter-tag {
  background: #111;
  color: #ccc;
  border-color: #333;
}

body.lights-out .filter-tag.active {
  background: #fff;
  color: #000;
}

body.lights-out .accordion-header {
  background: #0a0a0a;
  border-color: #222;
}

body.lights-out .accordion-content {
  background: #111;
  border-color: #222;
}

body.lights-out .booking-tab {
  background: #111;
  color: #ccc;
  border-color: #333;
}

body.lights-out .booking-tab.active {
  background: #fff;
  color: #000;
}

body.lights-out .site-footer {
  background: #0a0a0a;
  border-top-color: #222;
}

body.lights-out .btn-primary {
  background: #fff;
  color: #000;
}

body.lights-out .btn-secondary {
  background: #111;
  color: #fff;
  border-color: #333;
}

body.lights-out .header-widget {
  color: #888;
}

body.lights-out .header-widget .widget-value {
  color: #fff;
}

body.lights-out .header-widget .widget-icon {
  stroke: #888;
}

body.lights-out .page-content {
  background: #000;
}

body.lights-out .attractions-map {
  filter: invert(1) hue-rotate(180deg);
}

body.lights-out .cta-section {
  background: #0a0a0a;
}

body.lights-out .detail-card {
  background: #0a0a0a;
  border-color: #222;
}

body.lights-out .empty-state {
  color: #888;
}

body.lights-out .tips-list {
  background: #0a0a0a;
}

body.lights-out .tip-item {
  background: #111;
  border-color: #222;
}

body.lights-out .booking-card-footer {
  border-top-color: #222;
}

body.lights-out .provider-badge,
body.lights-out .provider {
  color: #666;
}

body.lights-out .price-range {
  color: #fff;
}

body.lights-out .affiliate-notice {
  background: #111;
  border-color: #222;
}

body.lights-out .widget-container {
  background: #0a0a0a;
  border-color: #222;
}

body.lights-out .about-content {
  background: #000;
}

body.lights-out .contact-form input,
body.lights-out .contact-form textarea {
  background: #111;
  border-color: #333;
  color: #fff;
}

body.lights-out .hero h1 {
  text-shadow: none;
}

body.lights-out .hero-tagline {
  opacity: 0.8;
}

body.lights-out a {
  color: inherit;
}

body.lights-out .nav-links {
  background: #000;
}

/* Lights Out hover states - targeted feedback */
body.lights-out .btn-primary:hover {
  background: #e0e0e0;
  color: #000;
}

body.lights-out .btn-secondary:hover {
  background: #222;
  border-color: #444;
}

body.lights-out .nav-link:hover {
  color: #fff;
}

body.lights-out .attraction-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.08);
  border-color: #333;
}

body.lights-out .booking-card:hover,
body.lights-out .info-card:hover,
body.lights-out .detail-card:hover {
  border-color: #333;
}

body.lights-out .booking-item:hover {
  border-color: #fff;
}

body.lights-out .filter-tag:hover {
  background: #222;
  border-color: #444;
  color: #fff;
}

body.lights-out .booking-tab:hover {
  color: #fff;
}

body.lights-out .accordion-header:hover {
  background: #111;
}

body.lights-out .lights-out-toggle:hover {
  background: #222;
  border-color: #444;
}

body.lights-out .footer-section a:hover {
  opacity: 1;
}

/* Additional lights out overrides */
body.lights-out .page-title,
body.lights-out .page-subtitle,
body.lights-out .section h2,
body.lights-out .section-desc {
  color: #fff;
}

body.lights-out .section-desc {
  color: #888;
}

body.lights-out .booking-category h3 {
  color: #fff;
}

body.lights-out .info-icon {
  color: #fff;
}

body.lights-out .info-icon svg,
body.lights-out .inline-icon {
  stroke: #fff;
}

body.lights-out .booking-card-image,
body.lights-out .booking-card-image.placeholder,
body.lights-out .attraction-image.placeholder {
  filter: brightness(0.5);
  --placeholder-gradient: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
  background: var(--placeholder-gradient);
}

body.lights-out .accordion-header svg {
  stroke: #fff;
}

body.lights-out .cta-buttons .btn {
  border-color: #333;
}

body.lights-out .description {
  color: #888;
}

/* Hero Slideshow */
.hero.hero-slideshow {
  position: relative;
  background: none;
}

.slideshow-container {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slideshow-container .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slideshow-container .slide.active {
  opacity: 1;
}

.hero-slideshow .hero-content {
  position: relative;
  z-index: 5;
}

.slideshow-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
  visibility: hidden;
  pointer-events: none;
}

.slideshow-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, border-color 0.3s;
}

.slideshow-dots .dot:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.4);
}

.slideshow-dots .dot.active {
  background: #fff;
  border-color: #fff;
}

/* Interactive Map */
.map-section {
  background: var(--secondary);
}

.attractions-map {
  width: 100%;
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--background);
    flex-direction: column;
    padding: 1rem;
    gap: 0;
    border-bottom: 1px solid var(--border);
    margin-left: 0;
  }

  .header-widgets {
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    min-height: 70vh;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .section {
    padding: 3rem 0;
  }

  .page-title {
    font-size: 2rem;
  }

  .booking-tabs {
    flex-wrap: wrap;
  }

  .booking-tab {
    flex: 1;
    min-width: 100px;
    text-align: center;
    padding: 0.75rem;
  }

  .cta-buttons {
    flex-direction: column;
  }
}
