/* @neural-id: CSS-THEMES-SILLANS-VARIABLES */
:root {
  --sillans-bg: #ffffff;
  --sillans-surface: #f9f9f9;
  --sillans-radius: 8px;
  --sillans-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);

  /* Palette Fallbacks (Overridden by Tenant Config) */
  --col-primary: #3a7ca5;
  --col-secondary: #f4a261;
  --col-text: #333333;
  --col-text-muted: #666666;

  /* Fonts */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
}/* @neural-id: CSS-THEMES-SILLANS-NAVIGATION */
nav:not(.org-nav):not(.bmb-nav):not(.galet-nav):not(.galet-nav-pill):not(.coc-nav):not(.org-nav-links):not(.bmb-footer-links):not(.nat-sidebar):not(.nat-footer-links):not(.nat-nav) {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  z-index: 1000;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

nav.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--sillans-shadow);
}

nav.scrolled .logo h3,
nav.scrolled .nav-links a {
  color: var(--col-text);
}

.logo h3 {
  color: white;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: white;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: var(--col-secondary);
}

.btn-reserve {
  background-color: var(--col-secondary) !important;
  color: white !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 30px !important;
  font-weight: 600 !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 2px 0;
  transition: all 0.3s ease;
}/* @neural-id: CSS-THEMES-SILLANS-HERO */
.hero {
  position: relative;
  height: 100vh;
  background: #333 no-repeat center center/cover;
  color: white;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  max-width: 800px;
  margin: auto;
  padding: 0 2rem;
  text-align: center;
  z-index: 1;
}

.hero-content h1 {
  margin-bottom: 1rem;
  font-size: 3.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  color: white;
}

.hero-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  color: var(--col-primary, #3a7ca5);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.lodge-capacity {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 2rem;
  font-weight: 500;
}

.lodge-capacity i {
  color: var(--col-secondary);
}

.btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--col-secondary);
  color: white !important;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  letter-spacing: 1px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  background-color: var(--col-primary-dark, #2c5f8e);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}/* @neural-id: CSS-THEMES-SILLANS-SECTIONS */
body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--col-text);
  background-color: var(--sillans-bg);
}

.container {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5rem 0;
}

.layout-std-content {
  background-color: var(--sillans-bg);
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}/* @neural-id: CSS-THEMES-SILLANS-LODGE */
/* Amenities */
.lodge-presentation {
  background-color: var(--sillans-bg);
}

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin: 3.5rem 0;
}

@media (min-width: 768px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .amenities-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.amenity-card {
  background-color: white;
  padding: 3rem 2rem;
  border-radius: var(--sillans-radius);
  box-shadow: var(--sillans-shadow);
  transition: all 0.3s ease;
  text-align: center;
}

.amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.amenity-card i {
  font-size: 2.5rem;
  color: var(--col-primary);
  margin-bottom: 1.5rem;
}

/* Equipment */
.equipment {
  margin-top: 5rem;
  background-color: white;
  padding: 3.5rem;
  border-radius: 12px;
  box-shadow: var(--sillans-shadow);
}

.equipment h3 {
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--col-primary-dark, #2c5f8e);
}

.equipment-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.equipment-item {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  background-color: white;
}

.equipment-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  background-color: var(--col-surface, #f9f9f9);
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--col-text, #333);
}

.equipment-category:hover {
  background-color: var(--col-bg, #f0f0f0);
}

.equipment-category h4 {
  margin: 0;
  color: var(--col-primary-dark, #2c5f8e);
  font-weight: 600;
}

.equipment-toggle {
  transition: transform 0.3s ease;
  color: var(--col-primary, #2c5f8e);
}

.equipment-item.active .equipment-toggle,
.equipment-item.open .equipment-toggle {
  transform: rotate(180deg);
}

.equipment-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: var(--col-bg, #ffffff);
}

.equipment-item.active .equipment-details,
.equipment-item.open .equipment-details {
  max-height: 600px;
}

.equipment-details ul {
  list-style: none;
  padding: 1.5rem 2rem;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.equipment-details li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--col-text, #333);
}

.equipment-details i {
  color: var(--col-primary, #2c5f8e);
  width: 20px;
  text-align: center;
}/* @neural-id: CSS-THEMES-SILLANS-GALLERY */
/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.gallery-item {
  height: 280px;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: var(--sillans-shadow);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #fff;
  padding: 1.25rem;
  font-size: 0.95rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* Animations for revealing/hiding photos */
.hidden-photo {
  display: none !important;
}

body.wysiwyg-mode .hidden-photo,
body[data-edit-mode="true"] .hidden-photo {
  display: block !important;
}

.hidden-photo.photo-revealed {
  display: block !important;
  animation: fadeInUpSillans 0.6s ease-out forwards;
}

@keyframes fadeInUpSillans {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.show-more-container {
  display: flex;
  justify-content: center;
  margin: 3rem auto;
}

.show-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 14px 30px;
  background-color: var(--col-primary);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--sillans-shadow);
  letter-spacing: 0.5px;
}

.show-more-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}/* @neural-id: CSS-THEMES-SILLANS-CARDS */
/* Advantages */
.direct-advantages {
  text-align: center;
  background-color: var(--sillans-surface);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.advantage-card {
  padding: 2.5rem 2rem;
  background-color: white;
  border-radius: var(--sillans-radius);
  box-shadow: var(--sillans-shadow);
  transition: all 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.advantage-card i {
  font-size: 2.5rem;
  color: var(--col-secondary);
  margin-bottom: 1.5rem;
}

/* Activities */
.activity-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.activity-card {
  background-color: white;
  border-radius: var(--sillans-radius);
  box-shadow: var(--sillans-shadow);
  overflow: hidden;
  transition: all 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.activity-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.activity-card h4 {
  padding: 1.25rem 1.25rem 0.5rem;
  font-size: 1.3rem;
}

.activity-card p {
  padding: 0 1.25rem 1.5rem;
  color: var(--col-text-muted);
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  padding: 2.5rem 2rem;
  background-color: white;
  border-radius: var(--sillans-radius);
  box-shadow: var(--sillans-shadow);
  transition: all 0.3s ease;
  display: flex !important;
  flex-direction: column !important;
  text-align: center;
  border: 1px solid #f0f0f0;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
  color: #fbbf24;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  display: flex;
  justify-content: center;
  gap: 0.25rem;
}

.testimonial-comment {
  font-style: italic;
  color: var(--col-text-muted);
  margin-bottom: 2rem;
  flex: 1;
  font-size: 1.05rem;
  line-height: 1.6;
}

.testimonial-name {
  font-weight: 600;
  color: var(--col-heading);
  font-size: 1rem;
}

.testimonial-date {
  font-weight: 400;
  color: var(--col-text-muted);
  font-size: 0.9rem;
}/* @neural-id: CSS-THEMES-SILLANS-BOOKING */
.booking-section {
  background-color: var(--sillans-bg);
  padding: 5rem 0;
}

.booking-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.booking-section-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
}

.booking-form-wrap {
  background-color: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: var(--sillans-shadow);
}

.booking-form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: flex;
  gap: 1.5rem;
}

.form-group {
  flex: 1;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.25rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background-color: #f8fafc;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  border-color: var(--col-primary);
  outline: none;
}

.booking-info-aside {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.booking-info-box,
.booking-contact-box {
  background-color: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--sillans-shadow);
}

.booking-info-box h3,
.booking-contact-box h3 {
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--sillans-surface);
}

.booking-info-box ul,
.booking-contact-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.booking-info-box li,
.booking-contact-box li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
}

.booking-info-box i,
.booking-contact-box i {
  color: var(--col-secondary);
  width: 20px;
}/* @neural-id: CSS-THEMES-SILLANS-FAQ */
.faq {
  background-color: var(--sillans-surface);
}

.faq-container {
  max-width: 900px;
  margin: 3rem auto 0;
}

.faq-item {
  background-color: white;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  box-shadow: var(--sillans-shadow);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--col-primary-dark, #2c5f8e);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: #fbfbfb;
}

.faq-question::after {
  content: '\f067';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--col-primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after,
.faq-item.open .faq-question::after {
  content: '\f068';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 2rem;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  line-height: 1.7;
  color: var(--col-text-muted);
}

.faq-item.active .faq-answer,
.faq-item.open .faq-answer {
  max-height: 800px;
  padding: 0 2rem 1.75rem;
}/* @neural-id: CSS-THEMES-SILLANS-FOOTER */
.std-footer {
  background-color: #1e293b;
  color: white;
  padding: 5rem 0 3rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo h3 {
  color: white;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.footer-logo p {
  color: #94a3b8;
  font-size: 1rem;
}

.footer-links h4,
.footer-contact h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--col-secondary);
}

.footer-contact p {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #cbd5e1;
}

.footer-contact i {
  color: var(--col-secondary);
  width: 20px;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #64748b;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: #64748b;
  text-decoration: underline;
}

.footer-bottom a:hover {
  color: white;
}/* @neural-id: CSS-THEMES-SILLANS-RESPONSIVE */
@media (max-width: 1024px) {
  .booking-section-content {
    grid-template-columns: 1fr;
    width: 90%;
  }

  .footer-content {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .container {
    width: 92%;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 1.5rem 0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    color: #1a1a1a;
    padding: 1rem 2rem;
    display: block;
    text-align: center;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    height: auto;
    min-height: 80vh;
    padding: 120px 0 60px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact p {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content h2 {
    font-size: 1.5rem;
  }

  .gallery-grid,
  .amenities-grid,
  .advantages-grid,
  .activity-cards {
    grid-template-columns: 1fr;
  }
}/* @neural-id: CSS-THEMES-SILLANS-EXTRAS */
/* Extras for Sillans Origin */

/* Custom underline for headings in Sillans */
.theme-01_sillans_origin h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--col-secondary);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* Specific button polish */
.btn-primary {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary:active {
  transform: scale(0.95);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}