/* Dark theme overrides */
:root {
  --background: #121212;
  --foreground: #EEEEEE;
  --primary: #FFB87C; /* 2700K LED warm accent */
  --accent-green: #25b66b;
  --text-muted: #cccccc;
}

/* General adjustments */
.hero {
  padding: 2rem 0;
}

.has-background-dark {
  background-color: #121212 !important;
}

.shadow-lg {
  box-shadow: 0 8px 20px rgba(161, 124, 80, 0.5);
}

hr {
  margin: 1.5rem 0;
  height: 1px;
}

.content ul {
  list-style: none;
}

.content ul li::before {
  content: "✓";
  color: var(--accent-green);
  font-weight: bold;
  display: inline-block;
  width: 1rem;
  margin-left: -1rem;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  overflow-x: hidden;
}

/* Fix container and column spacing */
.container {
  max-width: 1200px;
}

.columns {
  margin: 0;
  width: 100%;
}

.column {
  padding: 0.75rem;
  overflow: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Prevent text overflow and ensure proper spacing */
* {
  box-sizing: border-box;
}

/* Better text handling */
p, h1, h2, h3, h4, h5, h6 {
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

/* Media component fixes */
.media {
  overflow: hidden;
}

.media-content {
  overflow: hidden;
  word-wrap: break-word;
}

/* Better responsive handling */
@media (max-width: 1023px) {
  .columns {
    flex-direction: column;
  }
  
  .column {
    width: 100% !important;
    flex: none !important;
  }
}

/* Wood panel panels */
.wood-panel {
  background-image: url('../img/wood-texture.jpg');
  background-size: cover;
}

/* LED glow accent */
.led-glow {
  box-shadow: 0 0 8px var(--primary);
}

/* Navbar Specific Adjustments */
/* Navbar base adjustments */


/* Responsive adjustments for mobile views */
/*@media (max-width: 768px) {
  .navbar .columns {
    flex-direction: column;
    align-items: center;
  }

  .navbar .column {
    width: 100%;
    text-align: center;
    padding: 0.75rem 0;
  }

  .navbar .is-flex {
    justify-content: center !important;
    flex-direction: column;
  }

  .navbar-item {
    margin: 0.3rem 0 !important;
  }
}*/


.footer {
  background-color: #121212 !important;
  padding: 2rem 1rem;
  box-shadow: 0 -4px 8px rgba(161, 124, 80, 0.2);
  font-size: 0.9rem;
}

.footer-text {
  color: rgba(255,255,255,0.4);
  margin: 0;
  font-weight: 400;
}



.home-hero {
  background-color: #121212;
  color: #FFFFFF;
}

.home-title {
  font-weight: bold;
  line-height: 1.1;
}

.home-subtitle {
  color: #ccc;
}

.partners-logos {
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.partners-logos img {
  height: 32px;
}

.home-separator {
  background-color: rgba(255,255,255,0.1);
  height: 1px;
  border: none;
  margin-bottom: 1.5rem;
}

.booking-info-title {
  margin-bottom: 1rem;
}

.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.feature-icon {
  width: 32px;
  height: 32px;
  background-color: #265D4D;
  border-radius: 8px;
  display: inline-block;
  margin-right: 0.75rem;
  background-image: url('/assets/img/icon-placeholder.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
}

.home-image {
  max-height: 600px;
  box-shadow: 0 4px 24px rgba(161, 124, 80, 0.5);
  border-radius: 16px;
}

.footer {
  background-color: #121212 !important;
  padding: 1.5rem 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.3);
}
