/* Kaibalya Website CSS */
:root {
  --maroon: #800000;
  --saffron: #FF9933;
  --ivory: #FFFFF0;
  --beige: #F5F1E6;
  --charcoal: #222222;
  --softgray: #666666;
  --gold: #FFD700;
  --white: #FFFFFF;
}

/* Base Styles */
body, html {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--ivory);
  color: var(--charcoal);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--maroon);
}

a {
  text-decoration: none;
  color: var(--maroon);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--saffron);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header */
.header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}

.logo a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--maroon);
}

.nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav ul li {
  margin-left: 20px;
}

.nav-link {
  padding: 8px 12px;
  border-radius: 4px;
}

.nav-link:hover {
  background-color: var(--beige);
}

.book-now {
  background-color: var(--maroon);
  color: var(--white);
}

.book-now:hover {
  background-color: var(--saffron);
  color: var(--charcoal);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1617629610447-5d2fb8bfcc26?w=1600&auto=format') no-repeat center center/cover;
  color: var(--white);
  padding: 100px 0;
  text-align: center;
}

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

.hero h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  background-color: var(--maroon);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: var(--saffron);
  color: var(--charcoal);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--white);
}

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

.btn-sm {
  padding: 8px 15px;
  font-size: 0.9rem;
}

.btn-large {
  padding: 12px 30px;
  font-size: 1.1rem;
}

/* Section Styles */
section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.section-title:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--saffron);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3, .service-card p {
  padding: 0 20px;
}

.service-card .btn {
  margin: 0 20px 20px;
}

/* Testimonials */
.testimonials {
  background-color: var(--beige);
}

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

.testimonial {
  background-color: var(--white);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.rating {
  color: var(--gold);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--softgray);
}

.view-all {
  text-align: center;
  margin-top: 40px;
}

/* CTA Section */
.cta {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1578683010236-d716f9a3f461?w=1600&auto=format') no-repeat center center/cover;
  color: var(--white);
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta h2 {
  color: var(--white);
}

/* Footer */
.footer {
  background-color: var(--charcoal);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer h3 {
  color: var(--white);
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 10px;
}

.footer-section a {
  color: var(--beige);
}

.footer-section a:hover {
  color: var(--saffron);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
}

.whatsapp-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.whatsapp-button svg {
  width: 30px;
  height: 30px;
  color: white;
}

/* Page Header */
.page-header {
  background-color: var(--beige);
  padding: 60px 0;
  text-align: center;
}

/* Booking Form */
.booking-form {
  background-color: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-section {
  margin-bottom: 30px;
}

.form-section h2 {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--beige);
}

.service-selection {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-option {
  position: relative;
}

.service-option input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.service-option label {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background-color: var(--beige);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.service-option input[type="radio"]:checked + label {
  background-color: var(--maroon);
  color: var(--white);
}

.service-option input[type="radio"]:checked + label h3 {
  color: var(--white);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

input, select, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
}

.service-fields {
  display: none;
}

#food-fields {
  display: block;
}

.form-submit {
  text-align: center;
  margin-top: 30px;
}

.form-note {
  font-size: 0.9rem;
  color: var(--softgray);
  margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .nav ul {
    display: none;
  }
  
  .service-selection {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .testimonials-slider {
    grid-template-columns: 1fr;
  }
}