/* 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;
}

.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;
}

/* VertiPort Amsterdam - Main Styles */

/* Navigation styles */
.navbar {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: relative;
  z-index: 100;
  min-height: 100px;
}

/* Logo styling with multiple selectors for specificity */
.navbar .logo,
nav.navbar .logo,
.navbar img.logo,
nav img.logo,
a img.logo {
  height: 200px !important;
  width: auto !important;
  max-width: 350px !important;
  min-height: 200px !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Updated Compare Hero Section */
.compare-hero {
  position: relative;
  min-height: 400px;
  padding: 0;
  background: #000;
  overflow: hidden;
}

.compare-hero-bg {
  background: url('/images/amsterdam.jpg') no-repeat center center/cover;
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.8;
}

.compare-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 0 20px;
}

.compare-hero-content h1 {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 40px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  text-align: center;
}

.compare-form {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 32px 0 rgba(60,30,20,0.13);
  padding: 26px 22px 12px 22px;
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trip-type-tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.trip-type-tabs button {
  border: none;
  outline: none;
  background: #f5f5f5;
  color: #3b82f6;
  font-weight: 600;
  font-size: 1.15rem;
  border-radius: 8px 8px 0 0;
  padding: 18px 38px;
  cursor: pointer;
  transition: background 0.14s, color 0.14s;
}

.trip-type-tabs button.active,
.trip-type-tabs button:hover {
  background: #3b82f6;
  color: #fff;
}

.form-row {
  display: flex;
  gap: 18px;
  margin-bottom: 12px;
  align-items: center;
}

.input-group {
  display: flex;
  align-items: center;
  background: #f9f9f9;
  border-radius: 8px;
  padding: 0 16px;
  min-height: 48px;
  box-sizing: border-box;
}

.input-group input,
.input-group select {
  background: transparent;
  border: none;
  font-size: 1rem;
  color: #222;
  outline: none;
  padding: 0 8px;
  width: 180px;
  height: 46px;
}

.input-group input::placeholder {
  color: #909090;
}

.input-group .swap-icon {
  margin: 0 10px;
  font-size: 1.5rem;
  color: #a8a8a8;
  cursor: pointer;
}

.input-group .calendar-icon {
  margin-left: 8px;
  font-size: 1.25rem;
  color: #3b82f6;
}

.input-group .check-icon {
  margin-left: 8px;
  font-size: 1.25rem;
  color: #3b82f6;
}

.date-group {
  min-width: 260px;
  flex: 1.2;
}

.travelers-group {
  min-width: 180px;
  flex: 1;
}

.from-to {
  flex: 3 1 500px;
  min-width: 350px;
  background: #f9f9f9;
  border-radius: 8px;
}

.search-btn {
  background: #3b82f6;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.12rem;
  font-weight: 700;
  padding: 0 40px;
  min-width: 210px;
  height: 48px;
  margin-left: 18px;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(60,30,20,0.10);
  transition: background 0.14s;
}

.search-btn:hover {
  background: #2563eb;
}

.compare-tix-label {
  font-size: 1.03rem;
  font-weight: 500;
  color: #3b82f6;
  display: flex;
  align-items: center;
  margin-top: 8px;
  gap: 6px;
}

.compare-tix-label input[type="checkbox"] {
  width: 19px;
  height: 19px;
  accent-color: #3b82f6;
}

/* Features Section */
.features-section {
  padding: 4rem 0;
  background: #f9fafb;
}

/* Feature Cards Section */
.feature-cards {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  align-items: stretch;
  margin: 32px 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.feature-card {
  flex: 1 1 0;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 24px 24px 18px 18px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-width: 260px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.feature-icon {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 50%;
  background: #eff6ff;
  padding: 12px;
}

.feature-title {
  font-weight: 700;
  font-size: 1.16rem;
  margin-bottom: 5px;
  color: #1f2937;
  line-height: 1.3;
}

.feature-desc {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .feature-cards {
    flex-direction: column;
    gap: 14px;
    padding: 0 16px;
  }
  .feature-card {
    min-width: 0;
    width: 100%;
  }
}

/* Search Results Section */
#searchResults {
  margin-top: 2rem;
}

/* Update language selector */
#languageSelect {
  padding: 8px 12px !important;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: white;
  font-size: 0.875rem;
  width: 100px !important;
  min-width: 100px !important;
  max-width: 100px !important;
  height: 40px !important;
  box-sizing: border-box !important;
}

/* Update auth buttons */
.auth-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.auth-buttons button {
  height: 40px !important;
  padding: 8px 16px !important;
  font-size: 0.875rem !important;
  width: 150px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
}

/* Responsive Design */
@media (max-width: 900px) {
  .compare-hero-content {
    padding: 30px 8px 0 8px;
  }
  
  .compare-hero-content h1 {
    font-size: 2.2rem;
  }
  
  .compare-form {
    padding: 16px 4px 8px 4px;
    max-width: 100vw;
  }
  
  .form-row {
    flex-direction: column;
    gap: 12px;
  }
  
  .search-btn {
    width: 100%;
    margin: 0;
    min-width: 0;
    margin-top: 10px;
  }
  
  .input-group, .date-group, .travelers-group, .from-to {
    min-width: 0;
    width: 100%;
    flex: 1 1 100%;
  }
  
  .trip-type-tabs {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .trip-type-tabs button {
    padding: 14px 20px;
    font-size: 1rem;
  }
}

/* Footer Styles */
.vertiport-footer {
  background: #fafafb;
  border-top: 1px solid #ebebeb;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 15px;
  color: #222;
  margin-top: 36px;
  padding: 0 0 16px 0;
}

.vertiport-footer-top {
  display: flex;
  gap: 40px;
  padding: 38px 20px 18px 20px;
  max-width: 1160px;
  margin: 0 auto;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 0px;
  min-width: 180px;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

.footer-col ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #222;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  text-decoration: underline;
  color: #3b82f6;
}

.vertiport-footer-currency {
  display: flex;
  align-items: center;
  margin: 16px 0 0 36px;
  font-size: 1.05rem;
  font-weight: 500;
  gap: 10px;
}

.vertiport-footer-currency img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #eee;
  margin-right: 8px;
}

.vertiport-footer-bottom {
  margin: 30px 0 0 0;
  padding: 18px 20px 0 20px;
  border-top: 1px solid #e5e5e5;
  text-align: center;
}

.footer-copyright {
  color: #757575;
  font-size: 0.95rem;
  margin-bottom: 14px;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #3b82f6;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: background 0.2s ease;
}

.footer-social a:hover {
  background: #2563eb;
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-logos img {
  margin: 0 10px;
  vertical-align: middle;
  opacity: 0.8;
}

@media (max-width: 1000px) {
  .vertiport-footer-top {
    flex-wrap: wrap;
    gap: 18px;
  }
  .footer-col {
    min-width: 155px;
  }
}

@media (max-width: 700px) {
  .vertiport-footer-top {
    flex-direction: column;
    gap: 22px;
    padding: 24px 18px 10px 18px;
  }
  .vertiport-footer-currency {
    margin: 12px 0 0 18px;
  }
  .footer-social {
    gap: 15px;
  }
  .footer-social a {
    width: 36px;
    height: 36px;
  }
}

/* Cookie Popup */
.vertiport-cookie-popup {
    position: fixed;
    left: 0;
    right: 0;
    top: 24px;
    margin: 0 auto;
    width: 670px;
    background: #fff;
    color: #1d2d3c;
    box-shadow: 0 4px 24px rgba(34, 51, 84, 0.15);
    border-radius: 12px;
    z-index: 9999;
    font-family: 'Inter', Arial, sans-serif;
    padding: 18px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transform: translateY(-120%);
    transition: transform 0.5s ease-in-out;
}

.vertiport-cookie-popup.show {
    transform: translateY(0);
}

.vertiport-cookie-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.vertiport-cookie-backdrop.show {
    opacity: 1;
    visibility: visible;
}

.vertiport-cookie-header {
    display: flex;
    align-items: center;
    margin-bottom: 2px;
}

.vertiport-cookie-logo {
    width: 125px;
    height: 30px;
    margin-right: 12px;
}

.vertiport-header-spacer {
    flex: 1;
}

.vertiport-link-top {
    color: #1d2d3c;
    text-decoration: underline;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.15s;
    cursor: pointer;
}

.vertiport-link-top:hover {
    color: #3b82f6;
}

.vertiport-cookie-content {
    font-size: 15px;
    margin-bottom: 10px;
}

.vertiport-cookie-content a {
    color: #3b82f6;
    text-decoration: underline;
    transition: color 0.15s;
}

.vertiport-cookie-content a:hover {
    color: #1d2d3c;
}

.vertiport-cookie-actions {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 18px;
    margin-top: 8px;
}

.vertiport-link-bottom {
    color: #3b82f6;
    font-size: 15px;
    font-weight: 500;
    text-decoration: underline;
    transition: color 0.15s;
    cursor: pointer;
}

.vertiport-link-bottom:hover {
    color: #1d2d3c;
}

.vertiport-btn-primary {
    background: #3b82f6;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    padding: 10px 40px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    margin-left: 16px;
}

.vertiport-btn-primary:hover {
    background: #2563eb;
    color: #fff;
}

@media (max-width: 700px) {
    .vertiport-cookie-popup {
        width: 95vw;
        min-width: 0;
        left: 2vw;
        right: 2vw;
        padding: 12px 8px 16px 8px;
    }
    .vertiport-btn-primary {
        font-size: 16px;
        padding: 8px 18px;
    }
    .vertiport-cookie-logo {
        width: 100px;
        height: 24px;
    }
}