/* PowerShell Summit Theme CSS */
:root {
  --primary-color: #00aeef;
  --secondary-color: #0082c6;
  --tertiary-color: #2b2d78;
  --quaternary-color: #92278f;
  --gradient-angle: 41deg;
  
  /* Derived colors */
  --primary-light: #33bef2;
  --primary-dark: #0088cc;
  --text-dark: #333333;
  --text-light: #666666;
  --text-white: #ffffff;
  --background-light: #f8f9fa;
  --background-white: #ffffff;
  
  /* Gradients */
  --main-gradient: linear-gradient(var(--gradient-angle), var(--primary-color), var(--secondary-color), var(--tertiary-color), var(--quaternary-color));
  --hero-gradient: linear-gradient(var(--gradient-angle), rgba(0, 174, 239, 0.9), rgba(0, 130, 198, 0.9), rgba(43, 45, 120, 0.9), rgba(146, 39, 143, 0.9));
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--tertiary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
}

/* Layout components */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 2.5rem 0;
}

.section-light {
  background-color: var(--background-light);
  border-top: 1px solid rgba(43, 45, 120, 0.08);
  border-bottom: 1px solid rgba(43, 45, 120, 0.08);
}

/* Branded underline accent beneath centered section headings */
.section .text-center > h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 0.85rem auto 0;
  background: var(--main-gradient);
  border-radius: 2px;
}

/* Header and Navigation */
.header {
  background: var(--background-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--tertiary-color);
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

/* Dropdown navigation */
.nav-menu .has-dropdown {
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  padding: 0.5rem 0;
  line-height: 1.6;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.dropdown-toggle:hover,
.dropdown-toggle.active,
.has-dropdown:hover .dropdown-toggle,
.has-dropdown:focus-within .dropdown-toggle {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.caret {
  font-size: 0.65rem;
  transition: transform 0.25s ease;
}

.has-dropdown:hover .caret,
.has-dropdown:focus-within .caret {
  transform: rotate(180deg);
}

.dropdown-menu {
  list-style: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: var(--background-white);
  border: 1px solid rgba(43, 45, 120, 0.1);
  border-top: 3px solid var(--primary-color);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(43, 45, 120, 0.18);
  padding: 0.5rem 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1001;
}

/* Invisible bridge so hover survives the gap between toggle and menu */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 0;
  right: 0;
  height: 13px;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.4rem;
  color: var(--text-dark);
  font-weight: 500;
  border-bottom: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  background: var(--background-light);
  color: var(--primary-color);
  border-bottom: none;
}

/* "Get Tickets" CTA button in the nav */
.nav-menu .nav-cta {
  display: flex;
  align-items: center;
  margin-left: 0.75rem;
}

/* Scoped under .nav-menu so it beats `.nav-menu a` and keeps white text */
.nav-menu .nav-cta-btn,
.nav-menu .nav-cta-btn:link,
.nav-menu .nav-cta-btn:visited,
.nav-menu .nav-cta-btn.active {
  display: inline-block;
  padding: 0.6rem 1.85rem;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
  white-space: nowrap;
  color: var(--text-white);
  background: var(--main-gradient);
  border: none;
  border-bottom: none;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 130, 198, 0.35);
}

.nav-menu .nav-cta-btn:hover {
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 7px 18px rgba(0, 130, 198, 0.45);
}

/* Hero section */
.hero {
  background: var(--hero-gradient);
  color: var(--text-white);
  padding: 5rem 0 4rem;
  text-align: center;
  margin-top: 80px;
}

.anniversary-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--text-white);
  padding: 0.4rem 1.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  backdrop-filter: blur(4px);
}

.hero h1 {
  color: var(--text-white);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.hero-event-meta {
  font-size: 1.2rem !important;
  font-weight: 600;
  color: #ffffff !important;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn-lg {
  padding: 1rem 2.75rem;
  font-size: 1.1rem;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1rem 1.25rem;
  border-radius: 10px;
  text-align: center;
  min-width: 90px;
  backdrop-filter: blur(10px);
}

.countdown-number {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--text-white);
}

.countdown-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--text-white);
  transform: translateY(-2px);
}

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

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

.hero .btn-secondary,
.stats .btn-secondary {
  color: var(--text-white);
  border-color: var(--text-white);
}

.hero .btn-secondary:hover,
.stats .btn-secondary:hover {
  background: var(--text-white);
  color: var(--primary-color);
}

.btn-gradient {
  background: var(--main-gradient);
  color: var(--text-white);
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  color: var(--text-white);
}

/* Cards */
.card {
  background: var(--background-white);
  border: 1px solid rgba(43, 45, 120, 0.1);
  border-top: 3px solid var(--primary-color);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(43, 45, 120, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(43, 45, 120, 0.16);
  border-top-color: var(--quaternary-color);
}

.card-title {
  color: var(--tertiary-color);
  margin-bottom: 1rem;
}

/* Grid layouts */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Pricing cards */
.pricing-card {
  position: relative;
  background: var(--background-white);
  border: 1px solid rgba(43, 45, 120, 0.12);
  border-top: 4px solid var(--primary-color);
  border-radius: 15px;
  padding: 1.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 28px rgba(43, 45, 120, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  box-shadow: 0 14px 36px rgba(43, 45, 120, 0.18);
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card.popular {
  border: 3px solid var(--primary-color);
}

.pricing-card.popular::before {
  content: "Popular";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: var(--text-white);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--tertiary-color);
  margin: 0.5rem 0;
}

.price-original {
  font-size: 1.2rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-right: 10px;
}

/* Stats section */
.stats {
  background: var(--main-gradient);
  color: var(--text-white);
  padding: 2.5rem 0;
  text-align: center;
}

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

.stat-item {
  padding: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Keynote / featured speaker card */
.keynote {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 1rem auto;
  max-width: 900px;
  padding: 1.5rem 2rem;
  border-radius: 25px;
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.keynote:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.keynote.left {
  flex-direction: row;
  background: linear-gradient(var(--gradient-angle), var(--quaternary-color), var(--secondary-color));
}

.keynote.right {
  flex-direction: row-reverse;
  background: linear-gradient(var(--gradient-angle), var(--secondary-color), var(--quaternary-color));
}

.keynote-details {
  flex: 1;
  min-width: 250px;
  margin: 0;
}

.keynote-details h2 {
  font-size: 2rem;
  margin: 0 0 0.5rem 0 !important;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.keynote-meta {
  font-size: 0.95rem;
  color: #f0f0f0;
  margin: 0;
}

.speaker-list {
  margin: 0.5rem 0 0 0;
  font-size: 1rem;
  color: #ffffff;
}

.speaker-list a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.speaker-list a:hover {
  text-decoration: underline;
}

.speaker-images {
  display: grid;
  gap: 0;
  max-width: 150px;
  max-height: 150px;
  margin: 0;
  border-radius: 25px;
  overflow: hidden;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(2, 1fr);
  line-height: 0;
}

.speaker-images[data-count="1"] {
  grid-template-columns: 1fr;
}

.speaker-images[data-count="3"],
.speaker-images[data-count="5"],
.speaker-images[data-count="6"] {
  grid-template-columns: repeat(3, 1fr);
}

.speaker-thumb,
.speaker-images a {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .keynote {
    flex-direction: column !important;
    text-align: center;
    gap: 1rem;
  }

  .keynote-details h2 {
    font-size: 1.6rem;
  }
}

/* Footer */
.footer {
  background: var(--tertiary-color);
  color: var(--text-white);
  padding: 3rem 0 1rem;
  text-align: center;
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
}

.footer a {
  color: var(--primary-color);
}

/* Responsive design */
@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-menu .nav-cta {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  /* Vertical panel: show dropdown toggle + children inline */
  .dropdown-toggle {
    width: 100%;
    justify-content: center;
    font-size: 1.2rem;
  }

  .nav-menu .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    min-width: 0;
    padding: 0.25rem 0 0.5rem;
    margin: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    text-align: center;
  }

  .nav-menu .dropdown-menu::before {
    display: none;
  }

  .nav-menu .dropdown-menu a {
    padding: 0.4rem;
    font-size: 1rem;
    color: var(--text-light);
  }

  .has-dropdown:hover .caret,
  .has-dropdown:focus-within .caret {
    transform: none;
  }

  .hero h1 {
    font-size: 2rem;
  }
  
  .countdown {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .countdown-item {
    padding: 1rem;
  }
  
  .countdown-number {
    font-size: 2rem;
  }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .container {
    padding: 0 15px;
  }
}

/* Utility classes */
.text-center {
  text-align: center;
}

.text-white {
  color: var(--text-white) !important;
}

.bg-gradient {
  background: var(--main-gradient);
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 1.5rem; }
.mb-3 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Hotel Information Styles */
.hotel-section {
  padding: 4rem 0;
}

.hotel-container {
  max-width: 900px;
  margin: 0 auto;
}

.hotel-card {
  background: linear-gradient(var(--gradient-angle), var(--primary-color), var(--secondary-color));
  color: var(--text-white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hotel-card h3 {
  color: var(--text-white);
  margin-top: 0;
  font-size: 1.8rem;
  text-align: center;
}

.hotel-info-box {
  background: rgba(255, 255, 255, 0.15);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  text-align: center;
}

.hotel-info-box p {
  margin: 0.5rem 0;
  font-size: 1.1rem;
  color: var(--text-white);
}

.hotel-info-box strong {
  font-weight: 600;
}

.hotel-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.hotel-detail-item {
  background: rgba(255, 255, 255, 0.15);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.hotel-detail-value {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--text-white);
}

.hotel-detail-value-small {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--text-white);
}

.hotel-detail-label {
  font-size: 0.9rem;
  opacity: 0.9;
  color: var(--text-white);
}

.hotel-amenities {
  margin: 2rem 0;
  text-align: center;
}

.hotel-amenities p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--text-white);
}

.hotel-actions {
  text-align: center;
  margin-top: 2rem;
}

.hotel-btn-primary {
  background: var(--text-white);
  color: var(--secondary-color);
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  margin: 0.5rem;
  font-size: 1.1rem;
  transition: all 0.2s ease;
}

.hotel-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: var(--secondary-color);
}

.hotel-btn-secondary {
  background: var(--tertiary-color);
  color: var(--text-white);
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  margin: 0.5rem;
  font-size: 1.1rem;
  transition: all 0.2s ease;
}

.hotel-btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: var(--text-white);
}

.hotel-notice {
  font-size: 0.9rem;
  margin: 1.5rem 0 0 0;
  opacity: 0.95;
  text-align: center;
  font-style: italic;
  color: var(--text-white);
}

/* Hotel info block (for shortcode) */
.hotel-info-block {
  background: linear-gradient(var(--gradient-angle), var(--primary-color), var(--secondary-color));
  color: var(--text-white);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.hotel-info-block h3 {
  color: var(--text-white);
  margin-top: 0;
}

.hotel-info-block h4 {
  color: var(--text-white);
  margin-top: 0;
}

.hotel-info-block p {
  color: var(--text-white);
  margin: 0.5rem 0;
}

.hotel-info-block strong {
  font-weight: 600;
}

.hotel-info-inner {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 4px;
  margin: 1rem 0;
}

.hotel-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.hotel-info-grid-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 4px;
}

.hotel-info-actions {
  margin: 1.5rem 0;
}

.hotel-info-btn-primary {
  background: var(--text-white);
  color: var(--secondary-color);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  margin-right: 1rem;
  transition: all 0.2s ease;
}

.hotel-info-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: var(--secondary-color);
}

.hotel-info-btn-secondary {
  background: var(--tertiary-color);
  color: var(--text-white);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  transition: all 0.2s ease;
}

.hotel-info-btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: var(--text-white);
}

.hotel-info-notice {
  font-size: 0.9rem;
  margin: 1rem 0 0 0;
  opacity: 0.9;
  color: var(--text-white);
}
/* Hotel Section - Homepage Specific Styles */
.hotel-section-subtitle {
  font-size: 1.1rem;
}

.hotel-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.hotel-gradient-card {
  background: linear-gradient(var(--gradient-angle), var(--secondary-color), var(--tertiary-color));
  color: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.hotel-gradient-card h3 {
  color: white;
  margin-top: 0;
  font-size: 1.8rem;
  text-align: center;
}

.hotel-address-box {
  background: rgba(255,255,255,0.15);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  text-align: center;
}

.hotel-address-box p {
  margin: 0.5rem 0;
  font-size: 1.1rem;
  color: white;
}

.hotel-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.hotel-stat-box {
  background: rgba(255,255,255,0.15);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.hotel-stat-value {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.hotel-stat-value-small {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.hotel-stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.hotel-features {
  margin: 2rem 0;
  text-align: center;
}

.hotel-features p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: white;
}

.hotel-cta-buttons {
  text-align: center;
  margin-top: 2rem;
}

.hotel-warning {
  font-size: 0.9rem;
  margin: 1.5rem 0 0 0;
  opacity: 0.95;
  text-align: center;
  font-style: italic;
  color: white;
}