/* Hotlum Color Palette */
:root {
  --hotlum-dark-text: #2f3d2a;
  --hotlum-secondary-text: #5f6f58;
  --hotlum-accent: #3f5f46;
  --hotlum-border: #e0dbd0;
  --hotlum-light-bg: #f9f7f3;
  --hotlum-off-white: #fafaf8;
  --hotlum-blue-header: #2d5a6f;
}

/* Header Styles */
.hotlum-header {
  background-color: var(--hotlum-blue-header);
  color: #ffffff;
  border-bottom: 1px solid var(--hotlum-blue-header);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

.hotlum-hero-container {
  position: relative;
}

.hotlum-hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  z-index: 10;
  width: 100%;
  padding: 0 2rem;
}

.hotlum-hero-title {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
}

.hotlum-hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

/* Navigation Styles */
.hotlum-nav {
  border-top: 1px solid var(--hotlum-border);
  border-bottom: 1px solid var(--hotlum-border);
  background-color: var(--hotlum-off-white);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.hotlum-nav-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 3rem;
  color: var(--hotlum-dark-text);
  font-size: 16px;
  font-weight: 500;
  align-items: flex-start;
}

.hotlum-nav-link {
  color: var(--hotlum-dark-text);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.hotlum-nav-link:hover {
  opacity: 0.7;
}

.hotlum-nav-button {
  background: none;
  border: none;
  padding: 0;
  color: var(--hotlum-dark-text);
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: opacity 0.2s;
}

.hotlum-nav-button:hover {
  opacity: 0.7;
}

.hotlum-dropdown-toggle {
  display: inline-block;
  transition: transform 0.2s;
}

.hotlum-dropdown-toggle.open {
  transform: rotate(180deg);
}

.hotlum-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.75rem;
  background-color: #ffffff;
  border: 1px solid var(--hotlum-border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 50;
  min-width: 220px;
}

.hotlum-dropdown-item {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--hotlum-dark-text);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--hotlum-border);
  transition: background-color 0.2s;
}

.hotlum-dropdown-item:last-child {
  border-bottom: none;
}

.hotlum-dropdown-item:hover {
  background-color: var(--hotlum-light-bg);
}

/* Main Content Styles */
.hotlum-main {
  color: var(--hotlum-dark-text);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.hotlum-section {
  margin-bottom: 1.25rem;
}

.hotlum-section:last-child {
  margin-bottom: 0;
}

/* Typography */
.hotlum-label {
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
  color: var(--hotlum-secondary-text);
}

.hotlum-page-title {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.4;
  color: var(--hotlum-dark-text);
  margin-bottom: 1rem;
}

.hotlum-section-title {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.4;
  color: var(--hotlum-dark-text);
  margin-bottom: 1rem;
}

.hotlum-subtitle {
  font-size: 1.125rem;
  font-weight: 700;
  font-style: italic;
  color: var(--hotlum-secondary-text);
  margin-bottom: 0.75rem;
}

.hotlum-body {
  font-size: 16px;
  color: var(--hotlum-secondary-text);
  line-height: 1.65;
}

.hotlum-body p {
  margin-bottom: 0.875rem;
}

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

.hotlum-content-block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hotlum-list-compact {
  margin: 0;
  padding-left: 1.5rem;
}

.hotlum-list-compact li {
  line-height: 1.65;
  margin-bottom: 0.5rem;
}

.hotlum-list-compact li:last-child {
  margin-bottom: 0;
}

.hotlum-list-tight {
  margin: 0;
  padding-left: 1.5rem;
}

.hotlum-list-tight li {
  line-height: 1.5;
  margin-bottom: 0.25rem;
}

.hotlum-list-tight li:last-child {
  margin-bottom: 0;
}

.hotlum-list-dense {
  margin: 0;
  padding-left: 1.5rem;
}

.hotlum-list-dense li {
  line-height: 1.35;
  margin-bottom: 0.125rem;
}

.hotlum-list-dense li:last-child {
  margin-bottom: 0;
}

.hotlum-link {
  color: var(--hotlum-accent);
  text-decoration: underline;
  font-weight: 700;
  transition: opacity 0.2s;
}

.hotlum-link:hover {
  opacity: 0.7;
}

/* Footer */
.hotlum-footer {
  background-color: #ffffff;
  color: var(--hotlum-dark-text);
  border-top: 1px solid var(--hotlum-border);
}

.hotlum-footer-content {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.hotlum-footer-branding {
  margin-bottom: 1.25rem;
}

.hotlum-footer-title {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.hotlum-footer-tagline {
  font-size: 14px;
  color: var(--hotlum-secondary-text);
  margin-bottom: 1rem;
}

.hotlum-footer-copyright {
  font-size: 12px;
  color: var(--hotlum-secondary-text);
}

.hotlum-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hotlum-footer-link {
  color: var(--hotlum-accent);
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.2s;
}

.hotlum-footer-link:hover {
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
  .hotlum-hero-title {
    font-size: 36px;
  }

  .hotlum-hero-subtitle {
    font-size: 16px;
  }

  .hotlum-nav-list {
    gap: 1.5rem;
    font-size: 14px;
  }
}
