.royale-header {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(182, 159, 4, 0.7)),
    url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
  background-attachment: fixed;
  padding: 140px 0 50px;
  text-align: center;
  color: white;
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
}


.royale-title {
  font-size: 3.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: #f8f8f8;
}

.royale-subtitle {
  font-size: 1.8rem;
  margin-bottom: 30px;
  font-weight: 300;
  color: #c9a74d;
}

.royale-tagline {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
  font-style: italic;
}

.section-title-royale {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
  text-align: center;
}

.section-title-royale:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--st-theme2);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  height: 200px;
  background-color: var(--st-theme2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}

.feature-content {
  padding: 25px;
}

.feature-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--st-theme2);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.amenity-category {
  background: #f8f8f8;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--st-theme2);
}

.amenity-category h3 {
  color: var(--st-theme2);
  margin-bottom: 20px;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.amenity-list {
  list-style-type: none;
  padding-left: 0;
}

.amenity-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}

.amenity-list li:last-child {
  border-bottom: none;
}

.amenity-list i {
  color: #c9a74d;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.location-item {
  background: #f8f8f8;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  border-top: 4px solid var(--st-theme2);
}

.location-item h3 {
  color: var(--st-theme2);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.investment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.investment-item {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.investment-item h3 {
  font-size: 2.5rem;
  color: var(--st-theme2);
  margin-bottom: 10px;
}

.investment-item h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.gallery-grid {
  /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px; */
  margin-top: 40px;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  height: 250px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(179, 141, 60, 0.8);
  color: white;
  padding: 10px;
  text-align: center;
}

.disclaimer-box {
  background: #fff9e6;
  border-left: 4px solid #ffcc00;
  padding: 20px;
  border-radius: 5px;
  margin-top: 40px;
  font-size: 0.9rem;
}

.disclaimer-title {
  font-weight: 700;
  margin-bottom: 10px;
  color: #cc9900;
}

.cta-section {
  background: var(--st-theme2);
  padding: 50px 0;
  text-align: center;
  color: white;
  margin: 50px 0;
}

.cta-btn {
  background: #c9a74d;
  color: #333;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  margin-top: 20px;
}

.cta-btn:hover {
  background: #e0c06d;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .royale-title {
    font-size: 2.5rem;
  }

  .royale-subtitle {
    font-size: 1.3rem;
  }
}