/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  justify-content: space-between;
  color: #3b3b3b;
  background-color: #faf9f7;
}

/* Typography */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: #2f2a25;
}

h1 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

/* Layout */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 4.5rem 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.about {
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
}

/* Header */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e2dd;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #3b3b3b;
  font-weight: 500;
}

/* Hero */
.hero {
  background:
    linear-gradient(
      rgba(242, 239, 233, 0.85),
      rgba(242, 239, 233, 0.85)
    ),
    url("../images/aurora_tea_table.png");
  background-size: cover;
  background-position: center;
  text-align: center;
}

.hero p {
  max-width: 700px;
  margin: 1rem auto 2rem;
}

/* Base button reset */
a.btn,
button.btn {
  border: none;
  background: none;
  appearance: none;
}

/* Buttons */

.btn {
  border-radius: 999px;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
}

.btn-primary {
  background: #c9a24d;
  color: white;
  border: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.btn-secondary {
  background: transparent;
  border: 2px solid #c9a24d;
  border-radius: 999px;
  color: #c9a24d;
}

.btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(201, 162, 77, 0.35);
}



.btn,
.btn:focus,
.btn:active {
  outline: none;
  box-shadow: none;
}

/* Subtle premium hover animation */
.btn {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}

/* Primary button hover */
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(201, 162, 77, 0.4);
}

/* Secondary button hover */
.btn-secondary:hover {
  background: rgba(201, 162, 77, 0.08);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

/* Button refinement */
.contact-form .btn {
  margin-top: 1rem;
  width: 100%;
}

/* CTA */
.cta {
  background: #2f2a25;
  color: white;
  text-align: center;
}

.cta h2,
.cta p {
  color: white;
}

/* Primary CTA Button (Contact Form) */
.btn-primary {
  font-size: 1.1rem;
  padding: 1.1rem 2.5rem;
  letter-spacing: 0.03em;
}

.contact-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(201, 162, 77, 0.4);
}


/* Sections */
.features {
  background: #ffffff;
}

.feature-box {
  text-align: center;
  background: #faf9f7;
  padding: 2rem 2rem;
  border-radius: 12px;
}

.services-list {
  list-style: none;
  max-width: 700px;
  margin: 2rem auto 0;
  padding: 0;
}

.services-list li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.services-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #c9a24d;
}

/* Package Cards */
.package img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.2rem;
}

.package .price {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #c9a24d;
  margin-bottom: 1rem;
}

.package-includes {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
  text-align: left;
}

.package-includes li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.package-includes li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #c9a24d;
  font-size: 0.8rem;
  top: 0.2rem;
}

.addons {
  background: #faf9f7;
  text-align: center;
}

.addons-intro {
  max-width: 600px;
  margin: 0 auto 3rem;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.addon-box {
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.addon-price {
  color: #c9a24d;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

/* Contact Section */
.contact {
  background: #faf9f7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info p {
  max-width: 420px;
}

/* Contact Details Section */
.contact-details {
  background: #ffffff;
  text-align: center;
}

.contact-details h2 {
  margin-bottom: 1rem;
}

.service-area {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1rem;
}

.contact-lines p {
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.contact-lines span {
  font-weight: 600;
  margin-right: 0.4rem;
}

.contact-lines a {
  color: inherit;
  text-decoration: none;
}

.contact-lines a:hover {
  text-decoration: underline;
}

/* Form Styling */
.contact-form {
  background: #ffffff;
  padding: 3rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c9a24d;
}

/* Footer */
.site-footer {
  background: #ffffff;
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid #e5e2dd;
}

.image-text {
  background: #ffffff;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.image-grid img {
  width: 100%;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    margin-bottom: 2rem;
  }

  /* Package cards */
  .package img {
    height: 300px;
  }

  .feature-box {
    margin-bottom: 2rem;
  }
	
	/* Hero text */
  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .hero p {
    font-size: 1rem;
  }
	
/* Home image + text stack on mobile */
.image-grid {
  grid-template-columns: 1fr;
}

.image-grid img {
  margin-bottom: 1.5rem;
}

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    margin-bottom: 2rem;
  }

	  /* Buttons */
  .btn {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }
	
  .contact-form .btn-primary {
    font-size: 1.05rem;
    padding: 1rem 2rem;
  }
	
	/* Package includes spacing */
  .package-includes li {
    margin-bottom: 0.8rem;
  }

  /* About text spacing */
  .about-text p {
    margin-bottom: 1.2rem;
  }
	.service-area {
    font-size: 0.95rem;
  }
}

