/* Global style */
a,h1,h2,h3,h4,h5,h6,p,button,label,div,span{
    font-family: "Cairo", sans-serif !important;
}



.text-right
{
    text-align: right !important;
    
}


input {
    text-align: start !important;
}


.available-rooms-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* تقليل المسافات بين الأزرار */
    justify-content: start; /* جعل الأزرار تصطف بشكل مرتب */
}

.available-room-btn {
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 8px;
    transition: 0.3s;
    margin-right: 10px !important;
}

.available-room-btn:hover {
    background-color: #4a67ff;
    color: white;
}


/** Contact page **/
/* Contact Page Styles */

/* Hero Section */
.hero-section {
  background-color: #F6F2E5;
  padding: 3rem 1.5rem;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 700;
  color: #005F6B;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  color: #2C3A45;
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.contact-container {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  padding: 2.5rem;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
  
  .contact-container {
    padding: 4rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #A8854E;
  margin-bottom: 0.5rem;
}

.contact-info-description {
  color: #374151;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #374151;
}

.contact-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.detail-label {
  font-weight: 600;
}

.detail-link {
  color: #005F6B;
  text-decoration: none;
  transition: color 0.3s ease;
}

.detail-link:hover {
  color: #A8854E;
}

/* Form Styles */
.contact-form-wrapper {
  display: flex;
  flex-direction: column;
}

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

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

.form-field label {
  font-weight: 600;
  color: #2C3A45;
  font-size: 0.875rem;
}

.form-field.required label::after {
  content: " *";
  color: #DC2626;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="url"],
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid #D1D5DB;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: #005F6B;
  box-shadow: 0 0 0 3px rgba(0, 95, 107, 0.1);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-field input[type="checkbox"],
.form-field input[type="radio"] {
  width: auto;
  margin-right: 0.5rem;
}

.field-help {
  font-size: 0.875rem;
  color: #6B7280;
  margin: 0;
}

.field-error {
  font-size: 0.875rem;
  color: #DC2626;
  margin: 0;
}

.form-errors {
  background-color: #FEE2E2;
  border: 1px solid #DC2626;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
  color: #991B1B;
}

/* Submit Button */
.btn-submit {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background-color: #005F6B;
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-submit:hover {
  background-color: #A8854E;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .btn-submit {
    width: auto;
    align-self: flex-start;
  }
}

/* Thank You Message */
.thank-you-message {
  text-align: center;
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.thank-you-icon {
  width: 4rem;
  height: 4rem;
  color: #10B981;
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-you-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #005F6B;
  margin: 0;
}

.thank-you-text {
  color: #374151;
  font-size: 1.125rem;
  max-width: 32rem;
  line-height: 1.6;
}

.btn-primary {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #005F6B;
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: 9999px;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.btn-primary:hover {
  background-color: #A8854E;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Form Grid Layout for multiple fields in one row */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* Checkbox and Radio Groups */
.form-field.checkbox-group,
.form-field.radio-group {
  gap: 0.75rem;
}

.form-field.checkbox-group label,
.form-field.radio-group label {
  display: flex;
  align-items: center;
  font-weight: 400;
  cursor: pointer;
}


/* About page style */

/* About Page Styles */

/* Hero Section */
.about-hero-section {
  position: relative;
  background-color: #F6F2E5;
  color: #2C3A45;
  padding: 6rem 1.5rem;
  border-bottom: 1px solid #D1D5DB;
}

@media (min-width: 768px) {
  .about-hero-section {
    padding: 9rem 1.5rem;
  }
}

.about-hero-stripe {
  position: absolute;
  top: 0;
  width: 100%;
  height: 0.5rem;
  background-color: #005F6B;
}

.about-hero-content {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.about-hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #005F6B;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .about-hero-title {
    font-size: 3.75rem;
  }
}

.about-hero-description {
  font-size: 1.25rem;
  color: #2C3A45;
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.about-hero-button {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #A8854E;
  color: white;
  font-weight: 600;
  font-size: 1.125rem;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}

.about-hero-button:hover {
  background-color: #8C6B59;
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Mission Section */
.about-mission-section {
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-mission-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-mission-image-wrapper {
  width: 100%;
}

.about-mission-image {
  width: 100%;
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 4px solid #A8854E;
}

.about-mission-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-mission-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #005F6B;
  border-bottom: 2px solid #A8854E;
  padding-bottom: 0.5rem;
  display: inline-block;
}

.about-mission-subsections {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-mission-subsection {
  color: #2C3A45;
}

.about-subsection-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #A8854E;
  margin-bottom: 0.5rem;
}

.about-subsection-description {
  line-height: 1.6;
}

/* Pillars Section */
.about-pillars-section {
  background-color: #F0EEE5;
  padding: 5rem 1.5rem;
}

.about-pillars-container {
  max-width: 80rem;
  margin: 0 auto;
}

.about-pillars-title {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  color: #005F6B;
  margin-bottom: 3rem;
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

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

.about-pillar-card {
  padding: 2rem;
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #005F6B;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-pillar-icon {
  font-size: 3rem;
  color: #A8854E;
  margin-bottom: 1rem;
  display: block;
}

.about-pillar-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #005F6B;
}

.about-pillar-description {
  color: #2C3A45;
  line-height: 1.6;
}

/* CTA Section */
.about-cta-section {
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  text-align: center;
}

.about-cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #005F6B;
  margin-bottom: 1rem;
}

.about-cta-description {
  font-size: 1.125rem;
  color: #2C3A45;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.about-cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: #005F6B;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 9999px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}

.about-cta-button:hover {
  background-color: #A8854E;
  transform: translateY(-2px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Responsive Typography */
@media (max-width: 640px) {
  .about-mission-title {
    font-size: 1.875rem;
  }
  
  .about-subsection-title {
    font-size: 1.25rem;
  }
  
  .about-pillars-title {
    font-size: 1.875rem;
  }
  
  .about-cta-title {
    font-size: 1.5rem;
  }
}