/* --- VertiPort Amsterdam Footer (custom) --- */
.va-footer { margin-top: 0; background: #fff; color: #222; font: 15px/1.6 Inter, Arial, sans-serif; }
.va-footer-upper { padding: 30px 0 38px; max-width: 1500px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 60px; align-items: flex-start; }
.va-footer-col { min-width: 260px; margin-right: 60px; }
.va-footer-brand { font-weight: 600; font-size: 1.1rem; margin-bottom: 14px; letter-spacing: .01em; }
.va-footer-links { display: flex; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }
.va-footer-links a { color: #d94b08; text-decoration: none; font-size: 15px; margin-right: 10px; transition: color .14s; }
.va-footer-links a:hover { color: #ff6a1a; text-decoration: underline; }
.va-footer-links-title { font-weight: 600; margin: 10px 0; }
.va-footer-links-multi { max-width: 1050px; line-height: 1.8; font-size: 14px; display: flex; flex-wrap: wrap; gap: 0 10px; }
.va-footer-links-multi a { color: #ff6200; text-decoration: none; padding-right: 7px; white-space: nowrap; transition: color .15s; }
.va-footer-links-multi a:hover { text-decoration: underline; color: #b94600; }
.va-footer-lower { padding: 52px 0 22px; background: linear-gradient(180deg, #202124 90%, #212325 100%); color: #fff; text-align: center; }
.va-footer-logo img { width: 155px; margin: 0 auto 18px; display: block; filter: brightness(180%); }
.va-footer-legal { max-width: 900px; margin: 0 auto; color: #e9e9e9; font-size: 13px; line-height: 1.5; }
.va-footer-legal-links { margin-bottom: 13px; color: #fff; font-size: 15px; }
.va-footer-legal-links a { color: #fff; text-decoration: underline; font-size: 15px; margin: 0 2px; transition: color .12s; }
.va-footer-legal-links a:hover { color: #ff8400; }
.va-footer-legal-text a { color: #ffae60; text-decoration: underline dotted; transition: color .14s; }
.va-footer-legal-text a:hover { color: #fff; }
.va-footer-social.hidden { display: none; }

@media (max-width: 1000px) {
  .va-footer-upper { flex-direction: column; gap: 24px; padding: 30px 14px; }
  .va-footer-links-multi { max-width: 99vw; font-size: 13px; }
  .va-footer-col { margin-right: 0; }
}
@media (max-width: 700px) {
  .va-footer-lower { padding: 36px 4vw 16px; font-size: 13px; }
  .va-footer-legal { font-size: 12px; }
  .va-footer-logo img { width: 115px; }
}
/* style.css */

/* Global Styles */
:root {
    --primary-color: #1a56db;
    --secondary-color: #1e429f;
    --text-color: #1f2937;
    --light-gray: #f3f4f6;
    --border-color: #e5e7eb;
}

/* Layout & Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hotel Hero Section */
.hotel-hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.hotel-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
}

/* Booking Widget */
.booking-widget {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-top: -4rem;
    position: relative;
    z-index: 10;
}

.date-picker input {
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    padding: 0.5rem 1rem;
}

/* Room Cards */
.room-card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s ease;
}

.room-card:hover {
    transform: translateY(-4px);
}

.room-card img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
}

.room-amenities li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    font-size: 0.875rem;
}

/* FAQ Section */
.faq-item {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    font-weight: 500;
    cursor: pointer;
}

.faq-answer {
    margin-top: 0.75rem;
    display: none;
    color: #4b5563;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Map Container */
.map-container {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    height: 400px;
}

/* Buttons */
.btn {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .booking-widget {
        margin-top: -2rem;
    }

    .room-card img {
        height: 10rem;
    }

    .hotel-hero {
        height: 50vh;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 0.5rem;
    }

    .booking-widget {
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 1.875rem;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Cookie popup specific hidden states */
.cookie-popup.hidden {
    display: none !important;
}

.va-cookie-card.hidden {
    display: none !important;
}

/* Cookie Preferences Modal */
.va-cmp-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}
.va-cmp-backdrop.active { display: flex; }
.va-cmp-modal {
  width: min(680px, 92vw);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  overflow: hidden;
}
.va-cmp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #0c223a;
  color: #fff;
}
.va-cmp-title { font-weight: 600; font-size: 18px; }
.va-cmp-close { background: transparent; border: none; color: #fff; font-size: 20px; cursor: pointer; }
.va-cmp-body { padding: 16px 20px; color: #333; }
.va-cmp-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-top: 1px solid #eee; }
.va-cmp-row:first-child { border-top: 0; }
.va-cmp-actions { padding: 16px 20px; display: flex; gap: 12px; justify-content: flex-end; border-top: 1px solid #eee; }
.va-btn { border: 1px solid #0c223a; background: #0c223a; color: #fff; padding: 10px 14px; border-radius: 8px; cursor: pointer; }
.va-btn.secondary { background: #fff; color: #0c223a; }

/* Coming Soon banner */
.va-coming-soon { display: none; background: #fff8e1; color: #7a5d00; border: 1px solid #ffe08a; padding: 12px 16px; border-radius: 8px; margin: 16px 0; }
.va-coming-soon.active { display: block; }

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.text-lg {
    font-size: 1.125rem;
}

.font-medium {
    font-weight: 500;
}

.text-gray-600 {
    color: #4b5563;
}

.mt-3 {
    margin-top: 0.75rem;
}

.w-full {
    width: 100%;
}

/* Navigation */
.nav-header {
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Section Layouts */
.section-padding {
    padding: 3rem 0;
}

.section-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: var(--text-color);
}

/* Booking Grid */
.booking-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .booking-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Room Grid */
.room-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .room-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Form Elements */
.guests-select select {
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    padding: 0.5rem 1rem;
}

.booking-button {
    display: flex;
    align-items: flex-end;
}

.booking-button .btn {
    width: 100%;
}

/* Labels */
label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

/* Add these styles to fix the basic layout and appearance */

body {
    background-color: #f9fafb;
    margin: 0;
    font-family: system-ui, -apple-system, sans-serif;
}

/* Hero Section Fixes */
.hotel-hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hotel-hero p {
    font-size: 1.25rem;
}

/* Booking Widget Fixes */
.booking-widget {
    margin-top: -4rem;
    background: white;
    padding: 2rem;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .booking-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Form Elements */
input, select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    margin-top: 0.5rem;
}

label {
    color: var(--text-color);
    font-weight: 500;
}

/* Section Spacing */
.section-padding {
    padding: 3rem 1rem;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: var(--text-color);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    font-weight: 500;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    width: 100%;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.hotel-card {
  border: 1px solid #ccc;
  padding: 16px;
  margin-bottom: 16px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  background: white;
}

.hotel-card h3 {
  margin-top: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
}

.hotel-card p {
  margin: 4px 0;
  color: #374151;
}

.hotel-card a {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 12px;
  background-color: #0071c2;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

.hotel-card a:hover {
  background-color: #005fa3;
}

/* --- TP Hero Header (custom, independent of external sites) --- */
.tp-hero {
  position: relative;
  background: linear-gradient(120deg, #006273 0%, #007185 60%, #ff4c5b 120%);
  padding-bottom: 50px;
  min-height: 360px;
  color: #fff;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

/* --- Cookie Popup (customized) --- */
.cookie-popup {
  position: fixed;
  z-index: 9999;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal {
  background: #fff;
  border-radius: 14px;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 6px 32px 0 rgba(0,0,0,0.16);
  padding: 34px 28px 32px 28px;
  text-align: left;
}

.cookie-header {
  margin-bottom: 16px;
}

.cookie-logo {
  width: 120px;
  height: auto;
  margin-bottom: 8px;
}

.cookie-body p {
  font-size: 15px;
  color: #363636;
  margin-bottom: 20px;
  line-height: 1.65;
}

.cookie-body a {
  color: #e07100;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 16px;
}

.cookie-learn {
  color: #e07100;
  font-size: 15px;
  text-decoration: underline;
  transition: color 0.2s;
}

.cookie-learn:hover {
  color: #ff9000;
}

.cookie-agree {
  background: #ff6d00;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 38px;
  border: none;
  border-radius: 26px;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 8px 0 rgba(255,109,0,0.13);
}

.cookie-agree:hover {
  background: #e07100;
}

@media (max-width: 600px) {
  .cookie-modal {
    padding: 20px 10px;
  }
  .cookie-actions {
    flex-direction: column;
    gap: 12px;
  }
  .cookie-logo {
    width: 94px;
  }
}

/* --- Compact Cookie Card (site-styled) --- */
.va-cookie-card {
  background: #111;
  color: #fff;
  max-width: 370px;
  padding: 32px 32px 28px 32px;
  border-radius: 6px;
  box-shadow: 0 2px 32px rgba(0,0,0,0.14);
  position: fixed;
  top: 60px;
  right: 60px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: Inter, Arial, sans-serif;
}
.va-cookie-title { font-weight: 700; font-size: 1.12em; margin: 0; }
.va-cookie-text { font-size: 0.98em; line-height: 1.55; margin: 0; }
.va-cookie-text a { color: #fff600; text-decoration: underline; font-weight: 600; }
.va-cookie-btn { border: none; width: 100%; padding: 13px 0; margin-top: 2px; font-size: 1em; font-family: inherit; font-weight: 700; border-radius: 3px; background: #ffe000; color: #222; cursor: pointer; transition: background .13s, color .13s; margin-bottom: 10px; }
.va-cookie-btn:hover { background: #fff600; }
.va-cookie-btn-essential { background: #ffe000; color: #222; }
.va-cookie-btn-all { background: #ffe000; color: #222; margin-bottom: 0; }

@media (max-width: 650px) {
  .va-cookie-card { right: 0; left: 0; top: auto; bottom: 0; border-radius: 0; padding: 24px 16px 18px 16px; max-width: none; }
}
.tp-hero-content {
  max-width: 1380px;
  margin: 0 auto;
  width: 100%;
  padding-top: 64px;
  padding-left: 80px;
  position: relative;
  z-index: 2;
}
.tp-hero-content h1 {
  font-size: 2.7rem;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.18;
}
.tp-hero-subtitle {
  font-size: 1.32rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.tp-hero-form-container {
  max-width: 1300px;
}
.tp-hero-form {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.08);
  padding: 26px 24px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.tp-trip-type {
  display: flex;
  gap: 12px;
  margin-bottom: 5px;
}
.tp-btn {
  background: #f2fafd;
  border: none;
  border-radius: 25px;
  padding: 8px 18px;
  font-size: 1.08rem;
  font-weight: 500;
  color: #007185;
  cursor: pointer;
  outline: none;
  transition: background 0.13s, color 0.13s;
}
.tp-btn-active,
.tp-btn:hover {
  background: #23d3e0;
  color: #fff;
}
.tp-form-options {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-bottom: 5px;
}
.tp-checkbox {
  font-size: 1rem;
  color: #555;
  font-weight: 500;
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.tp-checkbox input[type="checkbox"] {
  accent-color: #007185;
  margin-right: 6px;
  width: 16px;
  height: 16px;
}
.tp-form-fields {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 6px;
}
.tp-input-wrap {
  position: relative;
  flex: 1 1 170px;
  display: flex;
  align-items: center;
  background: #f7f8fa;
  border-radius: 7px;
  border: 1.5px solid #e6e6e6;
  padding-left: 34px;
  height: 46px;
  min-width: 128px;
  transition: border 0.14s;
}
.tp-input-wrap input {
  background: transparent;
  border: none;
  outline: none;
  font-size: 1.09rem;
  color: #242424;
  width: 100%;
  height: 100%;
  padding: 0 8px;
}
.tp-input-icon {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.75;
}
.tp-clear-btn {
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
}
.tp-search-btn {
  display: flex;
  align-items: center;
  background: #ff4c5b;
  border: none;
  border-radius: 7px;
  color: #fff;
  font-weight: 600;
  font-size: 1.14rem;
  padding: 0 28px;
  height: 46px;
  margin-left: 10px;
  cursor: pointer;
  transition: background 0.15s;
  gap: 8px;
}
.tp-search-btn:hover {
  background: #da3045;
}
.tp-travelers input {
  cursor: pointer;
  color: #252525;
  font-weight: 500;
}
.tp-hero-badge {
  position: absolute;
  right: 140px;
  top: 44px;
  width: 168px;
  z-index: 3;
  border-radius: 14px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
}
@media (max-width: 1150px) {
  .tp-hero-content {
    padding-left: 28px;
    padding-right: 10px;
  }
  .tp-hero-badge {
    right: 12px;
    top: 32px;
    width: 138px;
  }
}
@media (max-width: 900px) {
  .tp-hero-content {
    padding-left: 8px;
    padding-top: 36px;
  }
  .tp-hero-badge { display: none; }
  .tp-hero-form { padding: 16px 6px 8px 6px; }
  .tp-form-fields { flex-wrap: wrap; }
  .tp-input-wrap, .tp-search-btn { min-width: 110px; font-size: 0.98rem; }
}
@media (max-width: 630px) {
  .tp-hero-form { flex-direction: column; gap: 8px; }
  .tp-form-fields { flex-direction: column; gap: 9px; }
  .tp-input-wrap, .tp-search-btn { width: 100%; min-width: 100%; }
}