/* 
   Enhanced luxury styling for GapoFlats
   Additional visual refinements for professional appearance
*/

:root {
  --luxury-gold: #d4af37;
  --deep-navy: #0a1128;
  --rich-burgundy: #800020;
  --soft-cream: #f8f4e3;
  --charcoal: #333333;
}

/* Global luxury enhancements */
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--charcoal);
  line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.section-header h2 {
  position: relative;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--luxury-gold);
}

/* Enhanced hero section */
.hero-section {
  height: 85vh;
  min-height: 650px;
}

.hero-title {
  font-size: 4rem;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
}

/* Luxury button styling */
.btn {
  padding: 0.8rem 2rem;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--luxury-gold);
  border: 2px solid var(--luxury-gold);
  color: var(--deep-navy);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--luxury-gold);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--luxury-gold);
  color: var(--deep-navy);
}

.btn-secondary:hover {
  background-color: var(--luxury-gold);
  color: white;
}

/* Enhanced gallery styling */
.gallery-item {
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gallery-caption {
  background: linear-gradient(to top, rgba(10, 17, 40, 0.85), rgba(10, 17, 40, 0.4), transparent);
  padding: 2rem 1rem 1rem;
}

.gallery-caption h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--luxury-gold);
}

/* Enhanced testimonial styling */
.testimonial-item {
  background-color: white;
  padding: 3rem;
  border-left: 4px solid var(--luxury-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin: 2rem 0;
}

.testimonial-content {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.8;
  position: relative;
}

.testimonial-content::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  position: absolute;
  top: -2.5rem;
  left: -1rem;
  color: rgba(212, 175, 55, 0.2);
}

/* Enhanced amenity cards */
.amenity-card {
  padding: 2.5rem;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.amenity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.amenity-icon {
  color: var(--luxury-gold);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

/* Enhanced location section */
.location-grid {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.location-info {
  padding: 3rem;
  background-color: white;
}

.location-info h3 {
  color: var(--deep-navy);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.location-info h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 25px;
  background-color: var(--luxury-gold);
}

/* Footer enhancements */
.site-footer {
  background-color: var(--deep-navy);
  color: white;
  padding: 5rem 0 2rem;
}

.footer-logo .logo-text {
  color: var(--luxury-gold);
}

.footer-links a {
  color: white;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--luxury-gold);
  text-decoration: none;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--luxury-gold);
  border-color: var(--luxury-gold);
  color: var(--deep-navy);
}

/* Responsive enhancements */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .testimonial-item {
    padding: 2rem;
  }
}

/* Animation effects */
.fade-in {
  animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Luxury accents and details */
.gold-border {
  border: 1px solid var(--luxury-gold);
}

.luxury-shadow {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.luxury-card {
  background-color: white;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-bottom: 3px solid var(--luxury-gold);
}
