/* ===== VARIABLES ===== */
:root {
  --sunset: #ff6b35;
  --bs-primary: #ff6b35;
  --pink: #e30059;
  --orange: #f76400;
  --charcoal: #1a1a1a;
  --light-pink: #fdf0f4;
  --muted: #9e9e9e;
}

/* ===== GLOBAL ===== */
body {
  font-family: 'Lato', sans-serif;
  color: #333;
}

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
}

dl {
  margin: 0;
}

dt, dd {
  margin: 0;
  padding: 0;
  font-weight: inherit;
}

/* ===== NAVBAR ===== */
#mainNav {
  background-color: var(--sunset) !important;
  padding: 1rem 0;
  transition: box-shadow 0.3s ease;
}

#mainNav.navbar-shrink {
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

#mainNav .navbar-brand {
  color: #fff !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

#mainNav .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}

#mainNav .nav-link:hover {
  color: #fff !important;
}

.navbar-toggler {
  border-color: rgba(255,255,255,0.5);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== HERO / MASTHEAD ===== */
.masthead {
  background: radial-gradient(ellipse at center, #f0005f 0%, var(--pink) 70%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
  text-align: center;
  color: #fff;
}

.masthead-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.7);
  object-fit: cover;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.masthead-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.masthead-subheading {
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0;
}

.masthead-tagline {
  font-size: 1.5rem;
  font-style: italic;
  opacity: 0.9;
  margin-top: 0.5rem;
}

/* ===== DIVIDERS ===== */
.divider-custom {
  display: flex;
  align-items: center;
  margin: 1.5rem auto;
  max-width: 400px;
}

.divider-custom-line {
  flex: 1;
  height: 2px;
  background-color: var(--orange);
  opacity: 0.5;
}

.divider-custom.divider-light .divider-custom-line {
  background-color: rgba(255,255,255,0.6);
}

.divider-custom-icon {
  color: var(--orange);
  font-size: 1.25rem;
  margin: 0 1rem;
}

.divider-custom.divider-light .divider-custom-icon {
  color: rgba(255,255,255,0.8);
}

/* ===== PAGE SECTIONS ===== */
.page-section {
  padding: 5rem 0;
}

.page-section-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
}

/* ===== PRICES & HOURS ===== */
.info-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(227,0,89,0.08);
  padding: 2rem;
  height: 100%;
}

.info-card.hours-card {
  background: var(--light-pink);
}

.info-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-row,
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(227,0,89,0.1);
  font-size: 0.95rem;
}

.price-row:last-child,
.hours-row:last-child {
  border-bottom: none;
}

.price-label,
.hours-day {
  color: #444;
}

.price-label small,
.delivery-note {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
}

.price-value {
  font-weight: 700;
  color: var(--pink);
  white-space: nowrap;
  margin-left: 1rem;
}

.hours-value {
  font-weight: 600;
  color: #333;
  white-space: nowrap;
  margin-left: 1rem;
}

.hours-value.off {
  color: var(--muted);
  font-weight: 400;
}

.hours-value.status-note {
  color: var(--orange);
  font-weight: 400;
  font-style: italic;
}

.market-note {
  margin-top: 0.75rem;
  padding: 0.6rem 0.85rem;
  background: rgba(227,0,89,0.07);
  border-left: 3px solid var(--pink);
  border-radius: 4px;
  font-size: 0.82rem;
  color: #555;
}

/* ===== BG PRIMARY OVERRIDE ===== */
.bg-primary {
  background-color: var(--sunset) !important;
}

/* ===== BRIDAL OR PROM ===== */
#bridalorprom .btn-outline-light {
  border-width: 2px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0.65rem 1.75rem;
  border-radius: 50px;
  transition: all 0.2s;
}

#bridalorprom .btn-outline-light:hover {
  background: #fff;
  color: var(--pink);
}

/* ===== ABOUT ===== */
#about .about-col p {
  border-left: 3px solid rgba(255,255,255,0.4);
  padding-left: 1rem;
}

/* ===== CONTACT ===== */
.icon-contact {
  font-size: 3rem;
  color: var(--pink);
}

#contact a {
  color: var(--pink);
  font-weight: 700;
  overflow-wrap: break-word;
}

/* ===== FOOTER ===== */
footer.footer {
  background-color: var(--charcoal);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 2rem;
}

footer.footer h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}

footer.footer p,
footer.footer a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.btn-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}

.btn-social:hover {
  border-color: #fff;
  color: #fff;
}

/* ===== COPYRIGHT ===== */
.copyright {
  background-color: #111;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  padding: 1rem 0;
}

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
}

.scroll-to-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--pink);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  text-decoration: none;
  transition: opacity 0.2s;
}

.scroll-to-top a:hover {
  opacity: 0.8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .masthead-heading {
    font-size: 2.25rem;
  }

  .page-section {
    padding: 3.5rem 0;
  }

  .info-card {
    margin-bottom: 1.5rem;
  }
}
