/* === GLOBAL STYLES === */
body {
  font-family: 'Poppins', sans-serif;
  background-image: url('https://i.imgur.com/p3bWdL7.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #222;
  padding: 2rem;
  max-width: 800px;
  margin: auto;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
  backdrop-filter: blur(4px);
}


h1.title {
  font-family: 'Intro Rust', serif;
  font-size: 3rem;
  color: black;
  margin: 0.5rem 0 0;
}

.tagline {
  font-family: 'Amoresa', cursive;
  font-size: 1.25rem;
  color: #6c6c6c;
  margin-bottom: 2rem;
}

.logo {
  max-width: 100px;
  display: block;
  margin: 0 auto 1rem auto;
}

/* === FORM STYLING === */
form label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
}

form input,
form select {
  width: 100%;
  padding: 0.6rem;
  margin-top: 0.4rem;
  border-radius: 10px;
  border: 1px solid #ccc;
  background-color: #fff;
  font-size: 1rem;
}

button {
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  background-color: black;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: gold;
  color: black;
}

/* === PRICE DISPLAY === */
.price-output {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 2rem;
  padding: 1rem;
  background-color: #fafafa;
  border: 1px dashed #ccc;
  border-radius: 10px;
  text-align: center;
}
.option-group {
  margin-top: 2rem;
}

.option-label {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.button-grid {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.option-btn {
  flex: 1 1 40%;
  padding: 1rem;
  text-align: center;
  border: 2px solid #ccc;
  border-radius: 10px;
  background-color: #ffffff;
  color: #222;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.05);
  position: relative;
}

.option-btn small {
  display: block;
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.3rem;
}

/* ✨ Clear hover glow for clickable buttons */
.option-btn:not(:disabled):hover {
  border-color: gold;
  background-color: #fffbe7;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
  transform: translateY(-2px);
}

/* ✅ Selected (active) button style */
.option-btn.active {
  border-color: black;
  background-color: gold;
  color: black;
  font-weight: bold;
  box-shadow: 0 0 8px rgba(0,0,0,0.15);
}

/* 🚫 Unclickable (disabled) button style */
.option-btn:disabled {
  background-color: #eaeaea;
  color: #999;
  cursor: not-allowed;
  border: 2px dashed #bbb;
  box-shadow: none;
  opacity: 0.5;
  filter: grayscale(100%);
}




.banner-header {
  width: 100%;
  text-align: center;
  margin-bottom: 2rem;
}

.header-image {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

.contact-section {
  background-image: url('https://i.imgur.com/o4ZOxiv.jpg');
  background-size: cover;
  background-position: center;
  padding: 2rem;
  border-radius: 15px;
  margin-top: 3rem;
  color: #222;
}

.contact-section a {
  color: #222;
  text-decoration: underline;
}
