h1,h2 {
  font-family: 'Poppins', sans-serif;
    font-weight: bold !important;
}


.hero {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  padding: 5rem 8%;
  background: #efe7db;
}
.hero .left { flex: 1 }
.hero h1 {
  font-size: 3.4REM;
        margin-top: 6%;
  font-weight: bold !important;
  transition: transform 0.3s ease;
}

.cta {
  display: inline-block;
  padding: 0.6rem 1.6rem;
  font-size: 1.05rem;
  background: #3f3f3a;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease;
}
.cta:hover {
  transform: scale(1.02);
  background: #2c2c28;
}
.hero img {
  width: 750px;
  max-width: 55%;
        margin-top: 6%;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.container {
  padding: 3.5rem 8%;
}
.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.catalogue {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.card {
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 6px 20px rgba(10,10,10,0.08);
  display: flex;
  flex-direction: column;
  gap: .8rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: scale(1.01);
  box-shadow: 0 8px 24px rgba(10,10,10,0.12);
}
.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.4s ease;
}
.card img:hover {
  transform: scale(1.02);
}
.price {
  font-weight: 600;
  color: #2f2f2f;
  font-size: 1.05rem;
}
.card-actions {
  display: flex;
  gap: .6rem;
  justify-content: flex-end;
  margin-top: .6rem;
}
.btn {
  padding: 0.6rem 1rem;
  font-size: 1.05rem;
  border-radius: 8px;
  border: 0;
  background: #3f3f3a;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease;
}
.btn:hover {
  transform: scale(1.02);
  background: #2c2c28;
}
.btn-outline {
  background: #3f3f3a !important;
  color: #ffffff !important;
  border: 1px solid #3f3f3a !important;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn-outline:hover {
  transform: scale(1.02);
  background: #3f3f3a;
  color: #fff;
}



.fc-button {
  background-color: #3f3f3a !important; 
  color: #fff !important;             
  border: none !important;      
  border-radius: 8px !important;  
  margin-right: 0.1rem !important; 
  transition: background-color 0.3s ease;
}

.fc-button:last-child {
  margin-right: 0; 
}

.fc-button:hover {
  background-color: #5a5a55 !important; 
  color: #fff !important;
}




@media(max-width:900px) {
  .hero { flex-direction: column; align-items: flex-start }
  .hero img { max-width: 100% }

}






.pagination-wrapper {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap; 
  gap: 8px;
}

.pagination-wrapper .page-btn {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  transition: all 0.2s ease-in-out;
  min-width: 36px;
}


.pagination-wrapper .page-btn:hover:not(:disabled) {
  background: #f5f5f5;
  border-color: #aaa;
}


.pagination-wrapper .page-btn.active,
.pagination-wrapper .page-btn.page-number.active {
  background: #3f3f3a;
  color: #fff;
  border-color: #3f3f3a;
}


.pagination-wrapper .page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Responsive mobile : boutons un peu plus grands */
@media (max-width: 600px) {
  .pagination-wrapper .page-btn {
    padding: 10px 16px;
    font-size: 16px;
  }
}



.card.construction {
  background: #eee9e5; 
  border: 2px dashed #20201f;
  opacity: 0.8;
  position: relative;
}

.card.construction::after {
  content: "EN COURS";
  position: absolute;
  top: 8px;
  right: 8px;
  background: #141414;
  color: white;
  font-weight: bold;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 4px;
}

.card.construction .card-actions {
  display: none;
}


.card.construction img {
  filter: grayscale(60%);
}

























































        .containerR {
            width: 100%;
            max-width: 100%;
            margin-top: 5% !important;
            padding: 2rem;       
            box-sizing: border-box;
        }

        .headerR {
            text-align: center;
            margin-bottom: 3rem;
        }

        .headerR h1 {
            font-size: 2.5rem;
            color: #3f3f3a;
            margin-bottom: 0.5rem;
            font-family: 'Poppins', sans-serif;
            font-weight: bold;
        }

        .headerR p {
            color: #666;
            font-size: 1.1rem;
        }

        .booking-section {
            display: grid;
            grid-template-columns: 1fr 500px;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .calendar-containerR {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 8px 32px rgba(0,0,0,0.1);
        }

        .booking-panel {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 8px 32px rgba(0,0,0,0.1);
            height: fit-content;
            position: sticky;
            top: 2rem;
        }

        .calendar {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 1px;
            background: #e0e0e0;
            border-radius: 12px;
            overflow: hidden;
            margin-top: 1rem;
        }

        .calendar-headerR {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .calendar-nav {
            background: #3f3f3a;
            color: white;
            border: none;
            padding: 0.75rem 1rem;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .calendar-nav:hover {
            background: #2c2c28;
            transform: translateY(-2px);
        }

        .calendar-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #3f3f3a;
        }

        .day-headerR {
            background: #3f3f3a;
            color: white;
            padding: 1rem;
            text-align: center;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .day {
            background: white;
            padding: 1rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            min-height: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .day:hover {
            background: #f0f8ff;
            transform: scale(1.05);
        }

        .day.disabled {
            background: #f5f5f5;
            color: #ccc;
            cursor: not-allowed;
        }

        .day.available {
            background: #e8f5e8;
            border-left: 4px solid #28a745;
        }

        .day.booked {
            background: #ffe8e8;
            border-left: 4px solid #dc3545;
            cursor: not-allowed;
        }

        .day.selected {
            background-color: #175ba373;
            color: #007bff;
            transform: scale(1.1);
            border-left: 4px solid #007bff;
            z-index: 10;
            transition: all 0.2s ease;
        }

        .day.in-range {
            background-color: #cce5ff;
            color: #004085;
            transition: background-color 0.2s ease;
        }

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

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-label {
            font-weight: 600;
            color: #3f3f3a;
        }

        .form-input, .form-select {
            padding: 0.75rem;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            background-color: #1e1f20;
            color: white;
            transition: all 0.3s ease;
        }

  .form-input:focus, .form-select:focus {
    outline: none;
       color: white;
    border-color: #3f3f3a;
    box-shadow: 0 0 0 3px rgba(63, 63, 58, 0.1);
}

        



.form-input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #1e1f20 inset; /* fond gris clair */
    -webkit-text-fill-color: #ffffff;
    transition: background-color 5000s ease-in-out;
}


        .price-summary {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 1.5rem;
            margin: 1rem 0;
        }

        .price-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.75rem;
        }

        .price-total {
            border-top: 2px solid #3f3f3a;
            padding-top: 0.75rem;
            font-weight: 700;
            font-size: 1.2rem;
            color: #3f3f3a;
        }

        .btn-primary {
            background: linear-gradient(135deg, #3f3f3a 0%, #2c2c28 100%);
            color: white !important;
            border: none;
            padding: 1rem 2rem;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(63, 63, 58, 0.3);
        }

        .btn-primary:disabled {
            background: #ccc;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .legend {
            display: flex;
            gap: 2rem;
            justify-content: center;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
        }

        .legend-color {
            width: 16px;
            height: 16px;
            border-radius: 4px;
        }






.reservations-section {
  margin: 2rem 0;
  padding: 1.5rem;
  border-radius: 12px;
     background: white !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.reservations-section h2 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.reservation-card {
  background: #ffffff;
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reservation-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.reservation-card strong {
  font-size: 1.1rem;
  color: #222;
}

.reservation-card em {
  font-style: normal;
  color: #666;
  font-size: 0.9rem;
}

/* Statuts */
.status {
  display: inline-block;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0.3rem 0;
}

.status.confirmed {
  background: #e6f9f0;
  color: #2e8b57;
  border: 1px solid #9de5c1;
}

.status.pending {
  background: #fff8e6;
  color: #b58900;
  border: 1px solid #f5d97a;
}

.status.error {
  background: #fdecea;
  color: #b71c1c;
  border: 1px solid #f5a5a5;
}

/* Loading */
#reservationsList .loading,
#reservationsList .fa-spinner {
  text-align: center;
  color: #666;
  font-size: 1rem;
  margin: 1rem 0;
}











/* Modal overlay avec effet glassmorphism */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(16, 185, 129, 0.15));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow-y: auto;
  padding: 1rem;
  opacity: 0;
  animation: fadeInOverlay 0.4s ease-out forwards;
}

/* Contenu modal avec design moderne */
.modal-content {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  margin: 2rem auto;
  padding: 2.5rem;
  max-width: 1200px;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(-50px) scale(0.95);
  animation: slideInModal 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s forwards;
}

/* Animations */
@keyframes fadeInOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInModal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes bounceIn {
  0% { transform: scale(0.3); opacity: 0; }
  50% { transform: scale(1.05); }
  70% { transform: scale(0.9); }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Bouton de fermeture moderne */
.close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(239, 68, 68, 0.1);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  color: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.close:hover {
  background: rgba(239, 68, 68, 0.2);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.2);
}

/* Titre modal avec gradient */
.modal-content h2 {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #6366f1, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: -0.02em;
}

/* Résumé de réservation avec style carte */
#bookingSummary {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border: 1px solid rgba(148, 163, 184, 0.2);
  padding: 2rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
  font-size: 1rem;
  color: #1f2937;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

#bookingSummary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #10b981, #f59e0b);
}

/* Section PayPal moderne */
.paypal-section {
  background: linear-gradient(135deg, #0070ba, #003087);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 
    0 20px 25px -5px rgba(0, 112, 186, 0.3),
    0 10px 10px -5px rgba(0, 112, 186, 0.2);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  color: white;
}

.paypal-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}

.paypal-section h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.paypal-section p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

/* Container bouton PayPal */
#paypal-button-container {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

/* Badges sécurité PayPal */
.paypal-security-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.security-badge:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.security-badge i {
  color: #fbbf24;
  font-size: 1rem;
}


.payment-selection h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.payment-selection h3::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #10b981);
  border-radius: 2px;
}

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

.payment-method {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.payment-method::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(16, 185, 129, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.payment-method:hover::before {
  opacity: 1;
}

.payment-method:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.payment-method.selected {
  border-color: #6366f1;
  background: linear-gradient(135deg, #6366f1, #10b981);
  color: white;
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 25px -5px rgba(99, 102, 241, 0.4),
    0 10px 10px -5px rgba(99, 102, 241, 0.2);
}

.payment-method.selected::before {
  opacity: 0;
}

.payment-method .method-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.payment-method:hover .method-icon {
  transform: scale(1.1) rotate(5deg);
}

.payment-method.selected .method-icon {
  color: white;
  animation: bounceIn 0.6s ease;
}

.payment-method.paypal .method-icon {
  color: #0070ba;
}

.payment-method.iban .method-icon {
  color: #10b981;
}

.method-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.method-description {
  font-size: 1rem;
  opacity: 0.8;
  line-height: 1.5;
}

.payment-method.selected .method-description {
  opacity: 0.95;
}

/* Formulaire IBAN moderne */
.iban-form {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border-radius: 1.5rem;
  padding: 2.5rem;
  border: 2px solid #10b981;
  box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.2);
  display: none;
  position: relative;
  overflow: hidden;
}

.iban-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #10b981, #059669, #34d399);
}

.iban-form.active {
  display: block;
  animation: slideInModal 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.iban-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.iban-header h3 {
  color: #065f46;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.iban-header p {
  color: #059669;
  font-size: 1rem;
  opacity: 0.9;
}

.iban-input-group {
  position: relative;
  margin-bottom: 2rem;
}

.iban-input {
  width: 100%;
  padding: 1.25rem 1.25rem 1.25rem 3.5rem;
  border: 2px solid #10b981;
  border-radius: 1rem;
  font-size: 1.1rem;
  font-family: 'Monaco', 'Consolas', 'Courier New', monospace;
  font-weight: 600;
  background: white;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
}

.iban-input:focus {
  outline: none;
  border-color: #059669;
  box-shadow: 
    0 0 0 4px rgba(16, 185, 129, 0.1),
    0 4px 6px -1px rgba(16, 185, 129, 0.2);
  transform: translateY(-2px);
}

.iban-input::placeholder {
  color: #101011;
  font-weight: normal;
}

.iban-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: #10b981;
  font-size: 1.3rem;
}

.iban-submit {
  background: linear-gradient(135deg, #10b981, #059669);
  color: rgb(0, 0, 0);
  border: none;
  padding: 1.25rem 2rem;
  border-radius: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.3);
  position: relative;
  overflow: hidden;
}



.iban-submit:hover::before {
  left: 100%;
}

.iban-submit:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-3px);
  color: black;
  box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.4);
}

.iban-submit:active {
  transform: translateY(-1px);
}

.iban-submit i {
  font-size: 1.1rem;
}

/* Responsive design */
@media (max-width: 768px) {

  
  .modal-content {
    margin: 1rem auto;
    padding: 2rem 1.5rem;
    border-radius: 1rem;
  }
  
  .modal-content h2 {
    font-size: 1.75rem;
  }
  
  .payment-methods {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .payment-method {
    padding: 2rem 1.5rem;
  }
  
  .paypal-section,
  .iban-form {
    padding: 2rem 1.5rem;
  }
  
  .security-badge {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .modal-content {
    margin: 0.5rem auto;
    padding: 1.5rem 1rem;
  }
  
  .modal-content h2 {
    font-size: 1.5rem;
  }
  
  .payment-method .method-icon {
    font-size: 3rem;
  }
  
  .method-title {
    font-size: 1.2rem;
  }
  
  .paypal-section h3,
  .iban-header h3 {
    font-size: 1.5rem;
  }
}
















        @media (max-width: 768px) {
            .containerR {
                padding: 1rem;
                margin-top: 4% !important;
            min-width: 100% !important;
                width: 100%;
            }

            .headerR h1 {
                font-size: 1.6rem;
                line-height: 1.3;
            }

            .headerR p {
                font-size: 1rem;
            }

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

            .calendar-containerR {
                padding: 1rem;
            }

            .calendar {
                grid-template-columns: repeat(7, 1fr);
                font-size: 0.8rem;
            }

            .day {
                min-height: 40px;
                padding: 0.4rem;
                font-size: 0.75rem;
            }

            .day-headerR {
                padding: 0.6rem;
                font-size: 0.7rem;
            }

            .booking-panel {
                position: static;
                padding: 1rem;
            }

            .price-summary {
                padding: 1rem;
                font-size: 0.9rem;
            }

            .form-input, .form-select {
                padding: 0.6rem;
                font-size: 0.9rem;
            }

            .btn-primary {
                width: 100%;
                padding: 0.9rem;
                font-size: 1rem;
            }

            .modal-content {
                margin: 10% auto;
                width: 100%;
                padding: 1rem;
                max-width: 100%;
                max-height: 85vh;
            }

            .reservation-card {
                padding: 1rem;
            }

            .legend {
                gap: 1rem;
                margin-top: 1.5rem;
                font-size: 0.8rem;
            }

            .paypal-section {
                padding: 1rem 0.5rem;
            }

            .paypal-button {
                width: 100%;
                justify-content: center;
                padding: 0.8rem;
                font-size: 1rem;
            }

            .confirmation-actions {
                flex-direction: column;
                align-items: center;
            }

            .confirmation-btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }




































