/* Import Inter font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* Global Styles */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 20px;
  background: #FAFAFA;  /* Off-white background */
  color: #333;
  text-align: center;
}

/* Header & Navigation */
header {
  margin-bottom: 20px;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 0.85rem;
}

nav ul li a {
  text-decoration: none;
  color: #5A4FCF; /* Primary Indigo */
}

/* Heading Styles */
h1 {
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 700;
  color: #5A4FCF;
}

/* Content Container */
.content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.6;
}

/* Gallery (for About page) */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.gallery img {
  width: 100%;
  border-radius: 4px;
}

/* Contact Info */
.contact-info {
  margin: 20px 0;
}

.contact-info p {
  margin: 5px 0;
}

/* Forms */
.contact-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.contact-form button {
  padding: 10px;
  background: #FAA61A; /* Accent Warm Orange */
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.1s ease, background 0.3s ease;
}

/* Links */
a {
  color: #5A4FCF;
  text-decoration: none;
}

/* Utility Classes */
.hidden {
  display: none;
}

/* Responsive Styles */
@media (max-width: 600px) {
  body {
    padding: 10px;
  }
  .content {
    width: 100%;
  }
}

 /* Base Styles & Background */
    body {
      font-family: 'Inter', sans-serif;
      background: #FAFAFA; /* off-white */
      color: #333;
      margin: 0;
      padding: 20px;
      text-align: center;
    }
/* Header & Navigation */
header {
  margin-bottom: 20px;
}
nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 0.85rem;
}
nav ul li a {
  text-decoration: none;
  color: #5A4FCF; /* primary indigo */
}

/* Main Title */
h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #5A4FCF;
}

/* Order Summary Section */
.order-summary {
  background: #FFFFFF;
  border: 1px solid #D8D8D8;
  border-radius: 4px;
  padding: 16px;
  margin: 0 auto 20px;
  max-width: 800px;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.order-summary h2 {
  border-bottom: 1px solid #D8D8D8;
  padding-bottom: 8px;
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #5A4FCF;
}

/* Order Summary Table */
.order-summary table {
  width: 100%;
  border-collapse: collapse;
}
.order-summary table th,
.order-summary table td {
  padding: 8px;
  border-bottom: 1px solid #eee;
  text-align: left;
}
.order-summary table th {
  background: #F9F9F9;
}
.total {
  font-weight: bold;
  text-align: right;
  padding-top: 10px;
}

/* Option Section (e.g., Contact/Additional Options) */
.option-section {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  background: #FFFFFF;
  border: 1px solid #D8D8D8;
  border-radius: 4px;
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.option-section h3 {
  margin-top: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #5A4FCF;
}

/* Contact Form Styles */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

/* Buttons (Contact Form & Stripe Button) */
.contact-form button,
.stripe-button {
  padding: 10px 16px;
  background: #FAA61A; /* accent warm orange */
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.1s ease, background 0.3s ease;
}

/* Active state feedback for buttons */
.contact-form button:active,
.stripe-button:active {
  transform: scale(0.97);
}

/* Media Query for Mobile */
@media (max-width: 600px) {
  body {
    padding: 10px;
  }
  .order-summary,
  .option-section {
    width: 100%;
  }
}
