:root {
  --primary: #000000;
  --accent: #d4af37;
  --background: #ffffff;
  --text-dark: #000000;
  --text-light: #666666;
  --white: #ffffff;
  --radius: 12px;
}

#about .founder-photo {
  width: 100%;
  max-width: 260px;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  border: 4px solid var(--accent);
  background: #fff;
}
#details .addon-list {
  text-align: left;
  margin: 0 auto;
  max-width: 600px;
  font-size: 1.05rem;
  line-height: 2.1;
}

#details .addon-list br {
  line-height: 2.5;
}

.price-gold {
  color: var(--accent);
  font-weight: 700;
}

#details .addon-list strong {
  font-weight: 700;
}
#details .card {
  grid-column: auto !important;
  margin-top: 0 !important;
}
section {
  padding: 4rem 1rem;
  box-sizing: border-box;
}

/* Book Now button in navbar: accent color on hover */
.navbar .btn-outline-light:hover {
  background-color: var(--accent);
  color: var(--text-dark);
  border-color: var(--accent);
}
/* Logo in navbar: 90px tall, does not affect navbar height */
.navbar-logo {
  height: 200px;
  width: auto;
  /* margin-right: 10px;
  margin-top: 60px; */
  margin: 60px 10px 5px 0px;
  vertical-align: middle;
  display: inline-block;
  object-fit: contain;
  max-height: 100%;
}
#services .card {
  position: relative;
}

#services .learn-more-text {
  display: block;
  position: absolute;
  left: 0;
  right: auto;
  bottom: 0;
  padding: 0.75rem 1.25rem;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
  text-align: left;
  background: transparent;
  border-radius: 0 0 var(--radius) var(--radius);
  transform: translateY(8px);
}

#services .card:hover .learn-more-text {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

#services .card:hover .learn-more-text {
  opacity: 1;
  pointer-events: auto;
}



html,
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  background-color: var(--background);
  color: var(--text-dark);
  scroll-behavior: smooth;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: var(--accent);
}

a:hover {
  opacity: 0.8;
}

.navbar {
  background: var(--primary) !important;
  padding: 0.75rem 1.5rem;
  height: 80px;
  min-height: 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.navbar-brand {
  font-weight: 600;
  font-size: 1.25rem;
}

.navbar-title {
  font-family: "Brush Script MT", cursive, "Dancing Script", "Pacifico",
    "Great Vibes", sans-serif;
  font-size: 2rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 8px rgba(212, 175, 55, 0.15);
  display: block;
  text-align: center;
  margin: 0 auto;
  line-height: 1.1;
  white-space: nowrap;
}

.btn {
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-gold {
  background-color: var(--accent);
  color: var(--text-dark);
}

.btn-gold:hover {
  background-color: #b7952d;
}

.hero {
  background: url("pics/q-bg.png");
  width: 100%;
  color: white;
  text-align: center;
  padding: 6rem 1rem;
}

.hero h1 {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 4rem;
}

#services {
  background-color: #3f3f3f !important;
  color: white;
}

/* Horizontal layout for the first grid (Our Services section) */
#services .grid {
  grid-template-columns: repeat(4, 1fr);
}
#services .card {
  margin-top: 0;
  grid-column: auto;
}

.card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.card p {
  color: var(--text-light);
  font-size: 1.08rem;
  margin-bottom: 2.5rem;
  font-weight: 600;
}

/* Staggered effect only for Service Details section */
#details .card:nth-child(1) {
  grid-column: 1;
  margin-top: 0;
}
#details .card:nth-child(2) {
  grid-column: 2;
  margin-top: 40px;
}
#details .card:nth-child(3) {
  grid-column: 1;
  margin-top: 60px;
}
#details .card:nth-child(4) {
  grid-column: 2;
  margin-top: 80px;
}


.founder-photo,
.service-image,
.team-photo-placeholder,
.team-image {
  border: 4px solid var(--accent);
  border-radius: var(--radius); 
}
/* Adds cropping and size control for images */
.service-image {
  /* width: 100%; */
  height: 600px;           /* adjust to make shorter/taller */
  object-fit: contain;       /* crop instead of squish */
  object-position: center; /* focus crop on middle (change to top/bottom if needed) */
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.team-image {
  height: 300px;
}

#about {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-color: #5e5e5e !important;
  color: white;
}
footer {
  background: var(--primary);
  color: white;
  text-align: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  flex-shrink: 0;
}

.modal-content {
  border-radius: var(--radius);
}

.booking-contact {
  font-family: "Brush Script MT", cursive, "Dancing Script", "Pacifico", "Great Vibes", sans-serif;
  font-size: 1.5rem;
  color: black;
  text-shadow: 0 1px 6px rgba(0,0,0,0.1);
}

/*Mobile device size styling*/
@media (max-width: 900px) {
  #services .learn-more-text {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
    position: static;  /* optional: lets it flow naturally under text */
    margin-top: 1rem;  /* spacing if position:static */
    display: block;
  }

  .grid,
  #services .grid,
  #details .grid {
    grid-template-columns: 1fr;
    row-gap: 2rem;
    column-gap: 0;
    max-width: 95vw;
    margin: 0 auto 2rem auto;
  }
  .card {
    margin: 0 auto 2rem auto;
    width: 100%;
    max-width: 500px;
    grid-column: auto;
  }
  section {
    padding: 2.5rem 0.5rem;
  }
}
