/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

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

/* Header */
header {
  background-color: #482c5f;
  color: white;
  padding: 20px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

.logo {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  height: 85px;
  width: auto;
  object-fit: contain;
}

.logo h1 {
  font-size: 2.5em;
  margin-bottom: 0;
  letter-spacing: 2px;
  line-height: 40px;
}

.tagline {
  font-size: 0.9em;
  font-style: italic;
  opacity: 0.9;
}

.location {
  font-size: 1.1em;
}

/* Hero Section */
.hero {
  background-color: #fff;
  padding: 40px 0;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  max-width: 100%;
  height: auto;
  max-height: 500px;
  border-radius: 8px;
}

/* Sections */
section {
  padding: 50px 0;
}

section:nth-child(even) {
  background-color: #fff;
}

h2 {
  color: #482c5f;
  font-size: 2em;
  margin-bottom: 20px;
  text-align: center;
}

h3 {
  color: #482c5f;
  font-size: 1.4em;
  margin-bottom: 10px;
}

/* About Section */
.about p {
  font-size: 1.1em;
  margin-bottom: 15px;
  text-align: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* Catering Section */
.catering ul,
.services ul {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
}

.catering ul li,
.services ul li {
  background-color: #f2ecf7;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 4px solid #482c5f;
  border-radius: 4px;
  font-size: 1.05em;
}

/* Trial Section */
.trial {
  background: linear-gradient(135deg, #482c5f 0%, #7d5fa3 100%);
  color: white;
}

.trial h2 {
  color: white;
}

.trial-offer {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 8px;
}

.trial-offer h3 {
  color: white;
  font-size: 1.8em;
  margin-bottom: 20px;
}

.trial-offer p {
  font-size: 1.1em;
  margin-bottom: 10px;
}

/* Services Section */
.services {
  background-color: #fff;
}

/* Pricing Section */
.price-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.price-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.price-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.price-item h3 {
  margin-bottom: 0;
  min-height: 75px;
}

.price {
  font-size: 2.5em;
  color: #482c5f;
  font-weight: bold;
  margin: 15px 0;
}

.price-subtext {
  font-size: 0.4em;
  color: #482c5f;
  font-style: italic;
  margin-left: 5px;
}

.price-note {
  display: flex;
  flex-direction: column-reverse;
  align-self: center;
  font-size: 0.9em;
  color: #666;
  font-style: italic;
  min-height: 50px;
}

/* Contact Section */
.contact {
  background-color: #fff;
}

.contact-info {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-info p {
  font-size: 1.2em;
  margin-bottom: 15px;
}

.contact-info a {
  color: #482c5f;
  text-decoration: none;
  font-weight: bold;
}

.contact-info a:hover {
  text-decoration: underline;
}

.assurance {
  text-align: center;
  margin-top: 10px;
  font-size: 1.05em;
  color: #482c5f;
  font-weight: 600;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Booking Section */
.booking-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn,
.btn-secondary {
  padding: 15px 40px;
  font-size: 1.1em;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn {
  background-color: #482c5f;
  color: white;
}

.btn:hover {
  background-color: #3a214f;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background-color: #f2ecf7;
  color: #482c5f;
  border: 2px solid #482c5f;
}

.btn-secondary:hover {
  background-color: #482c5f;
  color: white;
}

/* Footer */
footer {
  background-color: #3a214f;
  color: white;
  text-align: center;
  padding: 30px 0;
  margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    text-align: center;
  }

  .logo h1 {
    font-size: 2em;
  }

  .location {
    margin-top: 10px;
  }

  .price-list {
    grid-template-columns: 1fr;
  }

  .booking-links {
    flex-direction: column;
    align-items: center;
  }

  .btn,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
}

/* Terms and Conditions Page */
.terms-hero h1 {
  text-align: center;
  color: #482c5f;
}

.terms-content h2 {
  text-align: left;
}

.terms-content ul {
  list-style: none;
  padding-left: 0;
}

.terms-content li {
  background-color: #f2ecf7;
  padding: 15px 20px;
  margin-bottom: 12px;
  border-left: 4px solid #482c5f;
  border-radius: 4px;
  font-size: 1.05em;
}
