/* Base styles */
:root {
  --navy: hsl(220, 60%, 30%);
  --orange: hsl(24, 95%, 50%);
  --white: #FFFFFF;
  --gray: #F5F5F5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  line-height: 1.5;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Booking Form Section */
.booking {
  padding: 5rem 0;
  background-color: var(--gray);
}

.booking-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

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

.form-group label {
  font-weight: 500;
  color: var(--navy);
}

.form-group input,
.form-group select {
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 0.25rem;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--navy);
}

/* Buttons */
.btn-primary {
  background-color: var(--navy);
  color: var(--white);
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: hsl(220, 60%, 25%);
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--navy);
  background-image: url('/lovable-uploads/9b39b236-e3e7-4ab4-b2be-7404cdfea692.png');
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.hero .accent {
  color: var(--orange);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* Stats Section */
.stats {
  padding: 5rem 0;
  background-color: var(--gray);
  text-align: center;
}

.stats h2 {
  font-size: 2.5rem;
  margin-bottom: 4rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-number {
  color: var(--orange);
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #666;
}

/* Featured Section */
.featured {
  padding: 5rem 0;
  background-color: var(--white);
}

.featured h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.featured .price {
  color: var(--orange);
  margin-bottom: 2rem;
}

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

.featured-text p {
  margin-bottom: 2rem;
}

.featured-image img {
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background-color: var(--gray);
  text-align: center;
}

.testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 4rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
  margin-bottom: 1.5rem;
}

.author {
  color: var(--navy);
  font-weight: 600;
}

.role {
  color: #666;
  font-size: 0.875rem;
}

/* Footer */
.footer {
  padding: 5rem 0;
  background-color: var(--navy);
  color: var(--white);
  text-align: center;
}

.footer h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.social-link {
  color: var(--orange);
  text-decoration: none;
  transition: color 0.3s;
}

.social-link:hover {
  color: hsl(24, 95%, 60%);
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .featured-content {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
