:root {
  --coral: #EE7F73;
  --butter: #F6E1A6;
  --mint: #BFE3D2;
  --sky: #A9D6E5;
  --ink: #111111;
  --paper: #FFFFFF;
}

body {
  margin: 0;
  font-family: "Poppins", "Quicksand", system-ui, -apple-system, sans-serif;
  background: var(--paper);
  color: var(--ink);
}

header {
  border-bottom: 6px solid var(--mint);
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #fafafa 100%
  );
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}


.accent-bar {
  height: 8px;
  background: linear-gradient(
    90deg,
    var(--coral),
    var(--butter),
    var(--mint),
    var(--sky)
  );
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.4rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.brand {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 1.1;
}

.brand span {
  color: var(--coral);
  font-weight: 800;
}

.brand small {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: #666;
  margin-top: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}


nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

nav a:hover,
nav a.active {
  background: var(--butter);
  color: var(--ink);
}


/* Page layout */
main {
  max-width: 1100px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 2rem;
}

/* Contact form */
form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

label {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  gap: 0.4rem;
}

input, textarea {
  padding: 0.6rem 0.7rem;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: inherit;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--coral);
}

.gallery-wide {
  max-width: 1200px;
}

button {
  margin-top: 1rem;
  align-self: flex-start;
  background: var(--coral);
  color: white;
  border: none;
  border-radius: 999px;
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Gallery grid */
.item-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

/* Card */
.item-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  cursor: pointer;
  transition: transform 0.2s ease;
  background: white;
}

.item-card:hover {
  transform: translateY(-4px);
}

.item-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

/* Hidden details */
.item-details {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.25rem;
  transition: max-height 0.35s ease, padding 0.25s ease;
}

/* Expanded state */
.item-card.open .item-details {
  max-height: 300px;
  padding: 1.25rem;
}

.item-details h3 {
  margin-top: 0;
}

.price {
  font-weight: 600;
  color: var(--coral);
}

.cta {
  display: inline-block;
  margin-top: 0.75rem;
  background: var(--coral);
  color: white;
  padding: 0.5rem 1.3rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 1000;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: white;
  border-radius: 16px;
  max-width: 420px;
  width: 90%;
  padding: 1.5rem;
  text-align: center;
  position: relative;
  animation: scaleIn 0.25s ease;
}

.modal img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.modal h2 {
  margin: 0.5rem 0;
}

.modal-price {
  font-weight: 600;
  color: var(--coral);
  margin: 0.75rem 0;
}

.modal-cta {
  display: inline-block;
  margin-top: 1rem;
  background: var(--coral);
  color: white;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
}

.modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  font-size: 1.8rem;
  border: none;
  background: none;
  cursor: pointer;
}

/* Wider modal layout */
.modal-wide {
  max-width: 720px;
  width: 95%;
  height: 500px;
  padding: 1.75rem;
  display: flex;
  align-items: center;
}

/* Two-column layout */
.modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  width: 100%;
  height: 100%;
  align-items: center;
}

.modal-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.modal-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  border-radius: 12px;
}


/* Info section */
.modal-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}


.modal-info h2 {
  margin-top: 0;
}

.modal-info p {
  margin: 0.75rem 0;
}

/* Mobile stacking */
@media (max-width: 700px) {
  .modal-wide {
    height: auto;
  }

  .modal-content {
    grid-template-columns: 1fr;
  }

  .modal-info {
    text-align: center;
  }
}

@keyframes scaleIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Large tablets / small laptops */
@media (max-width: 1100px) {
  .item-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablets */
@media (max-width: 800px) {
  .item-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 500px) {
  .item-grid {
    grid-template-columns: 1fr;
  }
}

.next-event {
  margin-top: 4rem;
}

.next-event h2 {
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.event-card {
  background: var(--mint);
  padding: 1.5rem;
  border-radius: 16px;
  max-width: 500px;
}

.event-card h3 {
  margin-top: 0;
}

.event-date {
  font-weight: 600;
  margin: 0.5rem 0;
}

.event-location {
  font-style: italic;
  margin-bottom: 0.75rem;
}

.event-note {
  margin-bottom: 0;
}

/* Services page */
.services-intro {
  max-width: 700px;
  margin-bottom: 3.5rem;
  font-size: 1.05rem;
}

/* Asymmetrical service blocks */
.service-block {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}

.service-block.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.service-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.15);
}

.service-text h2 {
  margin-top: 0;
}

.service-text ul {
  padding-left: 1.2rem;
  margin-top: 1rem;
}

.service-text li {
  margin-bottom: 0.4rem;
}

/* CTA */
.services-cta {
  background: var(--butter);
  padding: 3rem 2rem;
  border-radius: 22px;
  text-align: center;
}

.services-cta h2 {
  margin-top: 0;
}

.cta-button {
  display: inline-block;
  margin-top: 1.5rem;
  background: var(--coral);
  color: white;
  padding: 0.7rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 800px) {
  .service-block,
  .service-block.reverse {
    grid-template-columns: 1fr;
  }

  .service-image {
    order: -1;
  }
}

/* Gallery filters */
.gallery-filters {
  display: flex;
  gap: 3rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.filter-group label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

select {
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.tag-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-filters button {
  color: black;
  background: #eee;
  border: none;
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  cursor: pointer;
  font-size: 0.9rem;
}

.tag-filters button.active {
  background: var(--coral);
  color: white;
}

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', sans-serif;
  background: #fff9f0;
  color: #333;
  line-height: 1.6;
}

/* Header */
#site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: transparent;

  width: 100%;        /* Make it full width */
  position: relative; /* default positioning */
  box-sizing: border-box; /* include padding in width */
}

#site-header .brand {
  font-size: 1.5rem;
  color: #e2877a; /* Coral */
  font-weight: bold;
}

#site-header nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

#site-header nav a.active,
#site-header nav a:hover {
  color: #e2877a;
}


/* Hero Section */
.hero-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #fff9f0, #ffffff);
}

.hero-section .tagline {
  display: inline-block;
  background: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  color: #e2877a;
  margin-bottom: 20px;
}

.hero-section h1 {
  font-size: 3rem;
  margin: 20px 0;
  font-weight: 700;
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #555;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.btn {
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #e2877a;
  color: #fff;
}

.btn-primary:hover {
  background: #d87266;
}

.btn-outline {
  border: 2px solid #e2877a;
  color: #e2877a;
}

.btn-outline:hover {
  background: #e2877a;
  color: #fff;
}

/* Color Palette Circles */
.color-palette {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.color {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.color.coral { background: #e2877a; }
.color.yellow { background: #f9e5b5; }
.color.green { background: #c7e3d4; }
.color.blue { background: #b6dde9; }

/* Event Section */
.next-event {
  text-align: center;
  padding: 60px 20px;
}

.next-event h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}

.event-card {
  background: #fff;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  max-width: 400px;
  margin: 0 auto;
  text-align: left;
}

.event-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #e2877a;
}

.event-card p {
  margin-bottom: 8px;
  color: #555;
}

.event-card .event-date {
  font-weight: bold;
}

/* For Chrome, Safari, Edge */
::-webkit-scrollbar {
  width: 12px; /* width of the scrollbar */
}

::-webkit-scrollbar-track {
  background: white; /* the “bar” background */
}

::-webkit-scrollbar-thumb {
  background-color: coral; /* the draggable part */
  border-radius: 6px; /* round edges for the thumb */
  border: 2px solid white; /* adds spacing around the thumb */
}

/* For Firefox */
* {
  scrollbar-width: thin; /* auto, thin, none */
  scrollbar-color: coral white; /* thumb color, track color */
}