@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #fff;
  --accent: #fff;
  --text: #161616;
  --glass: rgba(255, 255, 255, 0.1);
  --border: rgba(255, 255, 255, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--primary);
  color: var(--text);
  line-height: 1.6;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  backdrop-filter: blur(12px);
  z-index: 1000;
  padding: 1rem 5%;
  transition: 0.3s;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover { color: var(--accent); }

.hero {
  height: 65vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/img/chambre.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.booking-form {
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

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

.booking-form p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

input, select, button {
  padding: 1rem;
  border: none;
  border-radius: 12px;
  background: rgba(255,255,255,0.15);
  color: var(--text);
  font-size: 1rem;
}

button {
  background: var(--accent);
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

button:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(225,29,72,0.4); }

section {
  padding: 6rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

h2 {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.gallery img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  transition: 0.4s;
}

.gallery img:hover { transform: scale(1.05); }

p {
  font-size: 1.1rem;
  max-width: 900px;
  margin: 1.5rem auto;
  opacity: 0.9;
}

footer {
  background: #161616;
  padding: 3rem 5%;
  text-align: center;
}

footer a {
  color: var(--accent);
  text-decoration: underline;
}

.order66
{font-family: Arial, Verdana, Helvetica; font-size: 12px; position:absolute; left:-7500px; }

@media (max-width: 768px) {
  .booking-form { padding: 2rem; }
  .booking-form h1 { font-size: 2.4rem; }
  .form-grid { grid-template-columns: 1fr; }
}
.fake-booking-widget {
  max-width: 100%;
  width: 90%;
  margin: 0 auto;
  text-align: left;
}

.widget-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.widget-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.widget-link:hover .widget-card {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.widget-row {
  display: flex;
  align-items: center;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid #e0e0e0;
  color: #333;
  font-size: 1.1rem;
  gap: 1rem;
}

.widget-row:last-of-type {
  border-bottom: none;
}

.widget-row svg {
  flex-shrink: 0;
  color: #666;
}

.destination span {
  color: #999;
  font-weight: 500;
}

.dates .nights {
  margin-left: auto;
  background: #e0f2fe;
  color: #006ce4;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.guests span {
  font-weight: 500;
}

.widget-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: #006ce4;
  color: white;
  padding: 1.4rem;
  font-size: 1.3rem;
  font-weight: 700;
  transition: background 0.3s;
}

.widget-link:hover .widget-search-btn {
  background: #e74e4e;
}

.widget-search-btn svg {
  stroke-width: 3;
}

.partner-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 1rem;
  opacity: 0.8;
  color: var(--text);
}
footer {
  background: #161616;
  color: #e0e0e0;
  padding: 5rem 5% 2rem;
  margin-top: 6rem;
  border-top: 1px solid var(--border);
}

footer a{
  color: #fff !important;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4rem;
  text-align: left;
}

.footer-column h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
  position: relative;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 3px;
  background: var(--accent);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 1rem;
}

.footer-column ul li a {
  color: var(--text);
  text-decoration: none;
  opacity: 0.8;
  transition: 0.3s;
  font-size: 1.1rem;
}

.footer-column ul li a:hover {
  opacity: 1;
  color: var(--accent);
  transform: translateX(8px);
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  opacity: 0.7;
  font-size: 0.95rem;
}

.footer-bottom a {
  color: var(--accent);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive tweak */
@media (max-width: 768px) {
  .footer-container {
    gap: 3rem;
    text-align: center;
  }
  .footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-column ul li a:hover {
    transform: none;
  }
}
.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  cursor: pointer;
  padding: 10px 0;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 33px;
  height: 4px;
  margin: 6px 0;
  background: var(--text);
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 1024px) {
  .hamburger {
    display: block;
  }

  nav {
    position: relative;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    order: 1;
  }

  .hamburger {
    order: 2;
  }

  .menu {
    order: 3;
    position: absolute;
    top: 100%;
    left: 0;
    width: 40%;
    background: #fff;
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }

  .menu li {
    margin: 1rem 0;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .menu a {
    font-size: 0.8rem;
    padding: 0.8rem 2rem;
    display: block;
  }

  .menu-toggle:checked ~ .menu {
    max-height: 1000px;
    padding: 3rem 0;
  }

  .menu-toggle:checked ~ .menu li {
    opacity: 1;
    transform: translateY(0);
  }

  .menu-toggle:checked ~ .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .menu-toggle:checked ~ .hamburger span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle:checked ~ .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -10px);
  }
}

@media (min-width: 1025px) {
  .menu {
    display: flex;
    gap: 2rem;
  }
}
.forthehorde {
	color: #e74e4e;
	text-decoration: none;
}
/* Base FAQ accordion styling */
details {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #f9f9f9;
    transition: all 0.3s ease;
}

summary {
    padding: 1.2rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(to right, #f0f4ff, #e6f0ff);
    list-style: none;
    position: relative;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    font-size: 1.4rem;
    font-weight: bold;
    transition: transform 0.4s ease;
}

details[open] summary::after {
    transform: rotate(135deg);
}

details > div {
    padding: 0 1.5rem 1.5rem;
    transition: all 0.4s ease;
    transition-behavior: allow-discrete;
    interpolate-size: auto 1s;
    overflow: hidden;
}

@supports not (interpolate-size: auto) {
    details > div {
        max-height: 0;
        transition: max-height 0.4s ease, padding 0.4s ease;
    }
    
    details[open] > div {
        max-height: 1000px;
        padding: 1.5rem;
    }
}

summary:hover,
summary:focus {
    background: linear-gradient(to right, #e0eaff, #d0e0ff);
    outline: none;
}

@media (prefers-reduced-motion: reduce) {
    summary::after,
    details > div {
        transition: none;
    }
}