/**
 * Casitas El Escondite - Main Styles
 * ====================================
 * Unified tropical theme for entire property
 * 
 * @file        styles.less
 * @description Casitas El Escondite website styles
 * @author      Julian R. Smith jrs (at) codesmith (dot) co
 * @copyright   Copyright (c) 2025 Julian R. Smith
 * 
 * Licensed for use solely by Casitas El Escondite. All other use prohibited.
 */
/**
 * Shared Design Tokens - PropertyCoPilot
 * ======================================
 * Core variables for consistent design across all clients
 * 
 * @file        variables.less  
 * @description Design system foundation
 * @author      Julian R. Smith jrs (at) codesmith (dot) co
 * @copyright   Copyright (c) 2025 Julian R. Smith
 * 
 * Licensed for use solely by PropertyCoPilot clients. All other use prohibited.
 */
/**
 * Shared Mixins - PropertyCoPilot  
 * ===============================
 * Reusable style patterns across all clients
 * 
 * @file        mixins.less
 * @description Common component patterns
 */
html {
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (min-width: 768px) {
  html {
    font-size: 17px;
    line-height: 1.65;
  }
}
@media (min-width: 1440px) {
  html {
    font-size: 16px;
    line-height: 1.7;
  }
  .post-content {
    max-width: 70ch;
  }
}
@media (min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 192dpi) {
  html {
    font-size: 17px;
    letter-spacing: -0.001em;
  }
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 2rem 0 1.5rem 0;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
  margin-top: 0;
}
h1 {
  font-size: 1.602rem;
  line-height: 1.1;
  margin: 3rem 0 2rem 0;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 1rem;
  font-weight: 800;
}
h2 {
  font-size: 1.424rem;
  margin: 3rem 0 1.5rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e2e8f0;
  font-weight: 700;
}
h3 {
  font-size: 1.266rem;
  margin: 2rem 0 1rem 0;
  font-weight: 600;
}
h4 {
  font-size: 1.125rem;
  margin: 1.5rem 0 1rem 0;
  color: #4a5568;
  font-weight: 600;
}
.post-content {
  max-width: 65ch;
  margin: 0 auto;
}
.post-content p {
  margin: 1.5rem 0;
  hyphens: auto;
  hyphenate-limit-chars: 6 3 3;
  letter-spacing: -0.001em;
}
.post-content p:first-of-type {
  font-size: 1.125rem;
  color: #4a5568;
  font-weight: 500;
  line-height: 1.7;
}
.post-content a {
  color: #ff8c00;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
  font-weight: 500;
}
.post-content a:hover {
  border-bottom-color: #ff8c00;
  color: #cc7000;
}
.post-content ul,
.post-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}
.post-content ul li,
.post-content ol li {
  margin: 1rem 0;
  line-height: 1.6;
  padding-left: 0.75rem;
}
.post-content ul ul,
.post-content ol ul,
.post-content ul ol,
.post-content ol ol {
  margin: 0.75rem 0;
}
.post-content blockquote {
  border-left: 3px solid #ff8c00;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: #feffff;
  border-radius: 0 6px 6px 0;
  font-style: normal;
  color: #4a5568;
}
.post-content blockquote p {
  margin: 1rem 0;
  font-size: 1.125rem;
  line-height: 1.7;
}
.post-content blockquote p:first-child {
  margin-top: 0;
}
.post-content blockquote p:last-child {
  margin-bottom: 0;
}
.post-content hr {
  border: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #e2e8f0, transparent);
  margin: 3rem 0;
}
code {
  font-family: 'SF Mono', 'Monaco', 'Menlo', 'Consolas', monospace;
  font-size: 0.875em;
  background: #edf2f7;
  padding: 0.2em 0.4em;
  border-radius: 4px;
  color: #c53030;
  font-weight: 500;
  border: 1px solid #dbe5ef;
}
pre {
  font-family: 'SF Mono', 'Monaco', 'Menlo', 'Consolas', monospace;
  font-size: 0.875em;
  line-height: 1.5;
  background: #f7fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
pre code {
  background: none;
  padding: 0;
  color: #1a1a1a;
  font-weight: 400;
  border: none;
}
.collapsible {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin: 2rem 0;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.2s ease;
}
.collapsible[open] {
  border-color: #ff8c00;
  box-shadow: 0 2px 8px rgba(43, 108, 176, 0.1);
}
.collapsible[open] .collapsible__icon::after {
  content: '−';
  color: #ff8c00;
}
.collapsible__summary {
  padding: 1.5rem;
  background: #f7fafc;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: all 0.2s ease;
}
.collapsible__summary:hover {
  background: #f0f5f9;
}
.collapsible__summary::-webkit-details-marker {
  display: none;
}
.collapsible__title {
  color: #1a1a1a;
  font-size: 1.125rem;
}
.collapsible__icon::after {
  content: '+';
  font-weight: bold;
  font-size: 1.2em;
  color: #4a5568;
  transition: all 0.2s ease;
}
.collapsible__content {
  padding: 1.5rem;
  border-top: 1px solid #e2e8f0;
}
.collapsible__content > *:first-child {
  margin-top: 0;
}
.collapsible__content > *:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  html {
    font-size: 15px;
    line-height: 1.65;
  }
  .post-content {
    padding: 0 1rem;
  }
  .post-content h1 {
    font-size: 1.424rem;
    margin: 2rem 0 1.5rem 0;
    line-height: 1.15;
  }
  .post-content h2 {
    font-size: 1.266rem;
    margin: 2rem 0 1rem 0;
  }
  .post-content p,
  .post-content ul,
  .post-content ol {
    margin: 1rem 0;
  }
  .post-content pre {
    padding: 1rem;
    font-size: 0.8125em;
    margin: 1.5rem 0;
  }
  .post-content .collapsible {
    margin: 1.5rem 0;
  }
  .post-content .collapsible .collapsible__summary {
    padding: 1rem;
  }
  .post-content .collapsible .collapsible__content {
    padding: 1rem;
  }
  .post-content blockquote {
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
  }
}
a:focus,
button:focus,
.collapsible__summary:focus {
  outline: 2px solid #ff8c00;
  outline-offset: 2px;
  border-radius: 2px;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@media (prefers-contrast: high) {
  .collapsible[open] {
    border-width: 2px;
    background: #ffffff;
  }
  code,
  pre {
    border: 2px solid #000000;
  }
}
@media print {
  html {
    font-size: 12pt;
    line-height: 1.4;
  }
  .post-content {
    max-width: none;
    padding: 0;
  }
  .post-content pre,
  .post-content code {
    background: #fff !important;
    border: 1pt solid #000 !important;
    font-size: 10pt;
  }
  .post-content .collapsible[open] {
    border-color: #000 !important;
    break-inside: avoid;
  }
  .post-content a {
    color: #000 !important;
    text-decoration: underline !important;
  }
}
.text-content {
  max-width: 65ch;
  line-height: 1.7;
}
.text-content p {
  margin: 1.5rem 0;
}
.text-content h1,
.text-content h2,
.text-content h3 {
  line-height: 1.2;
  margin: 2rem 0 1.5rem 0;
}
.reading-optimized {
  max-width: 65ch;
  line-height: 1.7;
}
.reading-optimized p {
  margin: 1.5rem 0;
}
.reading-optimized h1,
.reading-optimized h2,
.reading-optimized h3 {
  line-height: 1.2;
  margin: 2rem 0 1.5rem 0;
}
/**
 * Shared Header Component Styles
 * ====================================
 * Header and navigation styles used by both Concetta Inn and El Escondite
 * 
 * @file        header.less
 * @description Shared header and navigation styles
 * @author      Julian R. Smith jrs (at) codesmith (dot) co
 * @copyright   Copyright (c) 2025 Julian R. Smith
 * 
 * Licensed for use solely by PropertyCoPilot clients. All other use prohibited.
 * 
 * @project     PropertyCoPilot
 * @version     1.0
 * @since       2025.10.13
 */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(245, 255, 250, 0.92);
  transition: background 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 0.5rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
header.scrolled {
  background: rgba(255, 255, 255, 0.92);
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-menu {
  display: flex;
  gap: 2rem;
}
.nav-menu a {
  color: #2e8b57;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-variant: small-caps;
  font-size: 1.1rem;
  letter-spacing: 1px;
}
.nav-menu a:hover {
  color: #ff8c00;
  transform: translateY(-2px);
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}
.logo {
  height: 70px;
  width: auto;
}
.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2e8b57;
  font-family: 'Open Sans', Arial, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}
/**
 * Shared Gallery Component Styles
 * ====================================
 * Lightbox and image gallery styles used by both Concetta Inn and El Escondite
 * 
 * @file        gallery.less
 * @description Shared gallery and lightbox styles
 * @author      Julian R. Smith jrs (at) codesmith (dot) co
 * @copyright   Copyright (c) 2025 Julian R. Smith
 * 
 * Licensed for use solely by PropertyCoPilot clients. All other use prohibited.
 * 
 * @project     PropertyCoPilot
 * @version     1.0
 * @since       2025.10.13
 */
.image-gallery-container {
  position: relative;
  display: inline-block;
  width: 100%;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
}
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 62, 80, 0.7);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  font-weight: 500;
  font-size: 1.1rem;
}
.image-gallery-container:hover .gallery-overlay {
  opacity: 1;
}
/* Mobile-specific styles for better UX */
@media (hover: none) and (pointer: coarse) {
  .gallery-overlay {
    opacity: 0.7;
    font-size: 1rem;
  }
  .image-gallery-container:active .gallery-overlay {
    opacity: 0.9;
    background: rgba(52, 152, 219, 0.8);
  }
}
/* Fallback for older browsers */
@media (max-width: 768px) {
  .gallery-overlay {
    opacity: 0.7;
  }
  .gallery-overlay span::after {
    content: " 👆";
  }
}
/* Add a small camera icon to indicate gallery on mobile */
.image-gallery-container::before {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 15.2C13.7673 15.2 15.2 13.7673 15.2 12C15.2 10.2327 13.7673 8.8 12 8.8C10.2327 8.8 8.8 10.2327 8.8 12C8.8 13.7673 10.2327 15.2 12 15.2Z'/%3E%3Cpath d='M9 2L7.17 4H4C2.9 4 2 4.9 2 6V18C2 19.1 2.9 20 4 20H20C21.1 20 22 19.1 22 18V6C22 4.9 21.1 4 20 4H16.83L15 2H9ZM12 17C9.24 17 7 14.76 7 12C7 9.24 9.24 7 12 7C14.76 7 17 9.24 17 12C17 14.76 14.76 17 12 17Z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.8;
  z-index: 2;
  pointer-events: none;
}
@media (min-width: 769px) {
  .image-gallery-container::before {
    display: none;
  }
}
.lightbox {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  animation: fadeIn 0.3s ease;
}
.lightbox-content {
  position: relative;
  margin: auto;
  width: 95%;
  height: 95%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.3s ease;
}
.lightbox-close:hover {
  color: #f39c12;
}
.lightbox-image-container {
  position: relative;
  max-width: 90%;
  max-height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
}
.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox-image.loaded {
  opacity: 1;
}
.lightbox-spinner {
  display: none;
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #f39c12;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.lightbox-spinner.active {
  display: block;
}
.lightbox-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #f1f1f1;
  text-align: center;
  padding: 15px;
  font-size: 1.1rem;
  background: rgba(44, 62, 80, 0.8);
  max-width: 100%;
  border-radius: 0 0 4px 4px;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}
.lightbox-prev,
.lightbox-next {
  background-color: rgba(44, 62, 80, 0.7);
  color: white;
  border: none;
  padding: 20px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  margin: 0 20px;
  pointer-events: all;
  transition: background-color 0.3s ease;
}
.lightbox-prev:hover,
.lightbox-next:hover {
  background-color: rgba(52, 152, 219, 0.9);
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/* Touch support for mobile */
@media (max-width: 768px) {
  .lightbox-prev,
  .lightbox-next {
    padding: 15px;
    font-size: 20px;
  }
  .lightbox-caption {
    font-size: 1rem;
    padding: 10px;
  }
}
/**
 * Testimonials Carousel Styles
 * ============================
 * @file        testimonials-carousel.less
 * @description Reusable testimonials carousel styles
 * @author      Julian R. Smith jrs (at) codesmith (dot) co
 * @copyright   Copyright (c) 2025 Julian R. Smith
 * @project     PropertyCoPilot
 */
.testimonials-carousel {
  position: relative;
  margin: 2rem 0;
}
.testimonials-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.testimonials-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 1.5rem;
  padding: 5px 0;
}
.testimonial-slide {
  flex: 0 0 calc(33.333% - 1.5rem);
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  min-height: 280px;
  max-height: 320px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.testimonial-stars {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.testimonial-header-right {
  position: absolute;
  top: 1rem;
  right: 1rem;
  text-align: right;
  line-height: 1.2;
}
.testimonial-platform {
  font-weight: 600;
  color: #2c3e50;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
}
.testimonial-date {
  color: #7f8c8d;
  font-size: 0.75rem;
}
.testimonial-text {
  margin: 0.5rem 0 1rem;
  font-style: italic;
  line-height: 1.4;
  flex-grow: 1;
  overflow-y: auto;
  max-height: 8.4em;
}
.testimonial-meta {
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid #ecf0f1;
}
.testimonial-meta strong {
  display: block;
  color: #2c3e50;
  margin-bottom: 2px;
  font-size: 0.9rem;
}
.testimonial-meta span {
  display: block;
  font-size: 0.8rem;
  color: #7f8c8d;
}
.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.testimonials-nav button {
  background: #2c3e50;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
}
.testimonials-nav button:hover {
  background: #34495e;
}
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.testimonials-dots .testimonials-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #bdc3c7;
  cursor: pointer;
}
.testimonials-dots .testimonials-dot.active {
  background: #2c3e50;
}
@media (max-width: 1024px) {
  .testimonial-slide {
    flex: 0 0 calc(50% - 1.5rem);
  }
}
@media (max-width: 768px) {
  .testimonial-slide {
    flex: 0 0 100%;
  }
  .testimonials-nav button {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }
}
/**
 * Shared Modal Component Styles  
 * ====================================
 * Modal and dialog styles used by both Concetta Inn and El Escondite
 * 
 * @file        modals.less
 * @description Shared modal and dialog styles
 * @author      Julian R. Smith jrs (at) codesmith (dot) co
 * @copyright   Copyright (c) 2025 Julian R. Smith
 * 
 * Licensed for use solely by PropertyCoPilot clients. All other use prohibited.
 * 
 * @project     PropertyCoPilot
 * @version     1.0
 * @since       2025.10.13
 */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}
.modal-content {
  background-color: #ffffff;
  margin: 5% auto;
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 800px;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
}
.close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  font-weight: bold;
  color: #1e90ff;
}
.close:hover {
  color: #ff8c00;
}
.form-toggle {
  display: flex;
  margin-bottom: 1.5rem;
  border-radius: 25px;
  background: #f8f6f0;
  padding: 4px;
}
.toggle-btn {
  flex: 1;
  padding: 10px;
  border: none;
  background: transparent;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}
.toggle-btn.active {
  background: #1e90ff;
  color: #ffffff;
}
.form {
  display: none;
}
.form.active {
  display: block;
}
.form-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem;
  border: 1px solid #dee2e6;
  font-family: inherit;
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2e8b57;
  box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2e8b57;
  box-shadow: 0 0 0 2px rgba(46, 139, 87, 0.2);
}
.form-group textarea {
  resize: vertical;
}
#amenitiesModal .amenity {
  background: #ffddb3;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.9rem;
  color: #1e90ff;
  text-align: center;
  margin: 0.25rem;
  white-space: normal;
  word-break: break-word;
  min-width: 0;
}
#amenitiesModal .amenities-grid {
  max-height: 400px;
  overflow-y: auto;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
#amenitiesModal h2 {
  color: #1e90ff;
  margin-bottom: 1.5rem;
  text-align: center;
}
/**
 * Shared Button Component Styles
 * ====================================
 * Button styles used by both Concetta Inn and El Escondite
 * 
 * @file        buttons.less
 * @description Shared button styles and mixins
 * @author      Julian R. Smith jrs (at) codesmith (dot) co
 * @copyright   Copyright (c) 2025 Julian R. Smith
 * 
 * Licensed for use solely by PropertyCoPilot clients. All other use prohibited.
 * 
 * @project     PropertyCoPilot
 * @version     1.0
 * @since       2025.10.13
 */
.cta-button {
  padding: 0.8rem 1.5rem;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  padding: 12px 24px;
  text-align: center;
  background: #2e8b57;
  color: #ffffff;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 25px;
}
.cta-button:disabled {
  background: #ced4da !important;
  color: #6c757d !important;
  cursor: not-allowed !important;
  transform: none !important;
  opacity: 0.7;
}
.cta-button:hover:not(:disabled) {
  background: #21653f;
  transform: translateY(-1px);
}
.cta-button:hover {
  background: #21653f;
}
.cta-button:hover {
  transform: translateY(-2px);
}
.booking-button {
  padding: 0.8rem 1.5rem;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  min-width: 160px;
  font-weight: 600;
  color: #ffffff !important;
}
.booking-button:disabled {
  background: #ced4da !important;
  color: #6c757d !important;
  cursor: not-allowed !important;
  transform: none !important;
  opacity: 0.7;
}
.booking-button.airbnb {
  background: #FF5A5F;
}
.booking-button.airbnb:hover:not(:disabled) {
  background: #ff272e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 90, 95, 0.3);
}
.booking-button.booking {
  background: #003580;
}
.booking-button.booking:hover:not(:disabled) {
  background: #00204d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 53, 128, 0.3);
}
.booking-button.vrbo {
  background: #003580;
}
.booking-button.vrbo:hover:not(:disabled) {
  background: #00204d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 53, 128, 0.3);
}
.booking-button.agoda {
  background: #FBBB00;
  color: #000;
}
.booking-button.agoda:hover:not(:disabled) {
  background: #c89500;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(251, 187, 0, 0.3);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #2e8b57;
}
.hero {
  height: 100vh;
  background: url('../assets/elescondite_bahia_1.wm.jpg') no-repeat center center !important;
  background-size: cover !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.1);
}
.hero-content #hero-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  font-weight: 700;
  color: #ffffff;
}
.hero-content #hero-tagline {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  color: #ffffff;
  line-height: 1.5;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
section {
  padding: 80px 0;
}
section:nth-child(even) {
  background: #f8f6f0;
}
.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #2e8b57;
  margin-bottom: 3rem;
}
.about-section {
  padding: 0;
}
.about-content {
  text-align: center;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}
.feature-item {
  background: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 3rem;
  text-align: center;
  transition: all 0.3s ease;
}
.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2e8b57, #21653f);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}
.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.feature-item:hover .feature-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #28784b, #1b5233);
}
.about-gallery {
  margin: 4rem 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #ffffff;
  padding: 1.5rem;
  font-weight: 600;
  text-align: center;
}
.about-cta {
  background: linear-gradient(135deg, #2e8b57, #21653f);
  padding: 4rem;
  border-radius: 12px;
  color: #ffffff;
  text-align: center;
}
.about-cta .cta-text {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 600;
}
.about-cta .cta-button {
  background: #ffffff;
  color: #2e8b57;
  border: none;
  font-weight: 700;
}
.about-cta .cta-button:hover {
  background: #f1faf5;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}
.rooms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.room-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  padding: 2rem;
}
.room-card:hover {
  transform: translateY(-5px);
}
.room-card h3 {
  color: #2e8b57;
  margin-bottom: 1rem;
}
.room-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin: 1rem 0;
}
.room-details .detail {
  font-size: 0.9rem;
  color: #2f4f4f;
}
.room-details .detail strong {
  color: #2e8b57;
}
.room-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: block;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  width: 100%;
  max-height: 80%;
  overflow-y: auto;
}
.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}
.amenity {
  background: #ffddb3;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.9rem;
  color: #1e90ff;
}
.view-amenities-btn {
  padding: 0.8rem 1.5rem;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  padding: 12px 24px;
  border: none;
  text-align: center;
  background: #1e90ff;
  color: #ffffff;
  background: transparent;
  color: #2e8b57;
  padding: 10px 20px;
  border: 2px solid #2e8b57;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 1rem 0;
}
.view-amenities-btn:disabled {
  background: #ced4da !important;
  color: #6c757d !important;
  cursor: not-allowed !important;
  transform: none !important;
  opacity: 0.7;
}
.view-amenities-btn:hover:not(:disabled) {
  background: #0077ea;
  transform: translateY(-1px);
}
.view-amenities-btn:hover {
  background: #2e8b57;
  color: #ffffff;
}
.view-amenities-btn:hover {
  transform: translateY(-2px);
}
.room-calendar {
  margin: 2rem 0;
}
.room-calendar h4 {
  color: #2e8b57;
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1.2rem;
}
.calendar-container {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.mini-calendar {
  height: 24.5rem;
  min-height: 24.5rem;
}
.mini-calendar .fc .fc-daygrid-day {
  height: auto;
  min-height: 2rem;
}
.mini-calendar .fc .fc-daygrid-day .fc-daygrid-day-frame {
  min-height: 3rem;
  height: auto;
}
.mini-calendar .fc .fc-daygrid-day .fc-daygrid-day-number {
  font-size: 0.75rem;
  padding: 0.25rem;
  line-height: 1.2;
}
.mini-calendar .fc .fc-toolbar {
  margin-bottom: 0.5em;
}
.mini-calendar .fc .fc-toolbar .fc-toolbar-title {
  font-size: 1em;
}
.mini-calendar .fc .fc-toolbar .fc-button {
  padding: 0.25em 0.5em;
  font-size: 0.875em;
}
.loading {
  text-align: center;
  padding: 2rem;
  color: #6ea9a9;
}
.fc-event {
  background: repeating-linear-gradient(45deg, rgba(239, 68, 68, 0.3), rgba(239, 68, 68, 0.3) 2px, rgba(239, 68, 68, 0.1) 2px, rgba(239, 68, 68, 0.1) 4px) !important;
  border: none !important;
}
.booking-actions {
  margin-top: 1.5rem;
  text-align: center;
}
.booking-actions .selected-dates {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #2f4f4f;
}
.booking-actions .selected-dates .selected-range {
  font-weight: 600;
  color: #2e8b57;
}
.booking-actions .selected-dates .no-selection {
  color: #6ea9a9;
  font-style: italic;
}
.booking-actions .book-selected-dates {
  padding: 0.8rem 1.5rem;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  padding: 12px 24px;
  text-align: center;
  background: #2e8b57;
  color: #ffffff;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
}
.booking-actions .book-selected-dates:disabled {
  background: #ced4da !important;
  color: #6c757d !important;
  cursor: not-allowed !important;
  transform: none !important;
  opacity: 0.7;
}
.booking-actions .book-selected-dates:hover:not(:disabled) {
  background: #21653f;
  transform: translateY(-1px);
}
.booking-actions .book-selected-dates:hover {
  background: #21653f;
}
.booking-actions .book-selected-dates:disabled {
  background: #cee2e2 !important;
  color: #6ea9a9 !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
  cursor: not-allowed;
}
.booking-actions .book-selected-dates:disabled:hover {
  background: #cee2e2 !important;
  color: #6ea9a9 !important;
  transform: none !important;
  box-shadow: none !important;
}
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.facility {
  text-align: center;
  padding: 2rem;
}
.facility-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.facility-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}
.attractions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.attraction {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  padding: 2rem;
  text-align: center;
}
.attraction-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.attraction-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.testimonial {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  padding: 2rem;
  position: relative;
}
.testimonial::before {
  content: '"';
  font-size: 4rem;
  color: #ff8c00;
  position: absolute;
  top: -10px;
  left: 20px;
}
.testimonial-author {
  font-weight: bold;
  color: #2e8b57;
  margin-top: 1rem;
}
.stars {
  color: #ffd700;
  margin-bottom: 1rem;
}
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}
.contact-right-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-info {
  background: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.booking-info {
  background: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.map-container {
  background: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
  }
}
.contact-method {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 1rem;
  background: #f8f6f0;
  border-radius: 4px;
  text-decoration: none;
  color: #2f4f4f;
  transition: all 0.3s ease;
}
.contact-method:hover {
  background: #ffffff;
}
.contact-method .map-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.contact-method .map-buttons .map-button {
  padding: 0.8rem 1.5rem;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  padding: 12px 24px;
  border: none;
  background: #1e90ff;
  color: #ffffff;
  background: transparent;
  color: #2e8b57;
  padding: 10px 20px;
  border: 2px solid #2e8b57;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 8px 16px;
  font-size: 0.9rem;
  text-align: center;
}
.contact-method .map-buttons .map-button:disabled {
  background: #ced4da !important;
  color: #6c757d !important;
  cursor: not-allowed !important;
  transform: none !important;
  opacity: 0.7;
}
.contact-method .map-buttons .map-button:hover:not(:disabled) {
  background: #0077ea;
  transform: translateY(-1px);
}
.contact-method .map-buttons .map-button:hover {
  background: #2e8b57;
  color: #ffffff;
}
.contact-method .map-buttons .map-button:hover {
  transform: translateY(-1px);
}
.contact-method .map-buttons .map-button.apple-maps {
  background: #000;
}
.contact-method .map-buttons .map-button.apple-maps:hover {
  background: #333333;
}
.contact-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
  width: 30px;
}
.booking-platforms {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.map-container {
  background: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}
.map-content {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  aspect-ratio: 1.33333333;
  max-height: 360px;
}
.map-placeholder {
  width: 100%;
  height: 100%;
  background: url('../assets/concetta_inn_sketch_map.png') no-repeat center center;
  background-size: contain;
  background-color: #f8f9fa;
}
.floating-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: #ffffff;
  padding: 15px;
  border-radius: 50%;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}
.floating-contact:hover {
  transform: scale(1.1);
}
footer {
  background: #2e8b57;
  color: #ffffff;
  text-align: center;
  padding: 2rem 0;
}
@media (max-width: 767px) {
  .nav-menu {
    display: none;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .contact-content {
    grid-template-columns: 1fr;
  }
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  nav {
    flex-direction: column;
    gap: 1rem;
  }
  .logo-container {
    justify-content: center;
  }
  .form-columns {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .about-cta {
    padding: 3rem;
  }
  .about-cta .cta-text {
    font-size: 1.25rem;
  }
  .room-details {
    grid-template-columns: 1fr;
  }
  .mini-calendar .fc .fc-toolbar {
    flex-direction: column;
    gap: 0.5em;
  }
  .mini-calendar .fc .fc-toolbar .fc-toolbar-chunk {
    text-align: center;
  }
}
