:root {
  --maroon: #6b0f1a;
  --maroon-dark: #430a12;
  --orange: #e8722c;
  --gold: #e8b23d;
  --cream: #fdf6ee;
  --text-dark: #2b2018;
}

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

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--cream);
  color: var(--text-dark);
}

/* ---------- Top Bar ---------- */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  padding: 1rem 1.2rem;
  background: var(--maroon);
  color: #fff;
}

@media (max-width: 480px) {
  .topbar {
    justify-content: center;
    text-align: center;
  }
}

.topbar .brand {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--gold);
}

.topbar-location {
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .topbar-location {
    white-space: normal;
    font-size: 0.8rem;
  }
}

/* ---------- Hero (banner, not full page) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  min-height: 540px;
  padding: 2.5rem 2rem 2rem;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: #fff;
  animation: heroFadeIn 0.9s ease;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* subtle texture so the empty background space doesn't read as flat color */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.07) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-text {
  text-align: center;
}

@media (min-width: 769px) {
  .hero-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .hero-photo-block {
    position: absolute;
    right: 6%;
    top: 57%;
    transform: translateY(-50%);
  }
}

.hero-photo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* bunting flags along the top edge */
.bunting {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 46px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='46'%3E%3Cline x1='0' y1='6' x2='80' y2='6' stroke='%23e8b23d' stroke-width='2'/%3E%3Cpolygon points='10,6 30,6 20,38' fill='%23e8722c'/%3E%3Cpolygon points='50,6 70,6 60,38' fill='%23fdf6ee'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  opacity: 0.9;
}

/* twinkling fairy lights just under the bunting */
.hero::after {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 14px;
  background-image: radial-gradient(circle, var(--gold) 3px, transparent 3.5px);
  background-size: 26px 14px;
  background-repeat: repeat-x;
  animation: twinkle 1.6s ease-in-out infinite alternate;
}

@keyframes twinkle {
  from { opacity: 0.35; }
  to   { opacity: 1; }
}

.deco {
  position: absolute;
  font-size: 3.5rem;
  opacity: 0.15;
  pointer-events: none;
}

.deco-tl { top: 60px; left: 20px; }
.deco-br { bottom: 15px; right: 25px; }

.flash-text {
  animation: flash 1.8s ease-in-out infinite;
}

@keyframes flash {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.welcome {
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 2px;
  opacity: 0.9;
}

.title {
  font-size: 3.2rem;
  color: var(--gold);
  margin: 0.2rem 0 0.8rem;
  letter-spacing: 1px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.tagline {
  font-size: 1.1rem;
  opacity: 0.85;
  letter-spacing: 0.5px;
  position: relative;
}

.hero-photo {
  width: 220px;
  height: 270px;
  object-fit: cover;
  object-position: top;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  border: 4px solid var(--gold);
}

.owner-name {
  margin-top: 1.2rem;
  font-size: 1.5rem;
  color: var(--gold);
}

.owner-phone {
  display: block;
  margin-top: 0.3rem;
  font-size: 1.05rem;
  color: #fff;
  opacity: 0.9;
  text-decoration: none;
}

.cta {
  display: inline-block;
  margin-top: 1.3rem;
  background: var(--orange);
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.cta:hover { background: var(--maroon); }

/* ---------- About ---------- */
.about-section {
  padding: 3rem 2rem 1rem;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
}

/* ---------- Services ---------- */
.services-section {
  padding: 3rem 2rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  color: var(--maroon);
  font-size: 2rem;
  margin-bottom: 2.2rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.4rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}

.service-photo-wrap {
  position: relative;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--orange), var(--maroon));
}

.service-photo-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-icon {
  font-size: 2.8rem;
}

.service-card h3 {
  font-size: 1.05rem;
  color: var(--maroon);
  text-align: center;
  padding: 0.9rem 0.8rem 0.4rem;
}

.service-card ul {
  list-style: disc;
  padding: 0 1.4rem 1.2rem 1.6rem;
  flex-grow: 1;
  font-size: 0.85rem;
  color: #444;
  line-height: 1.5;
}

@media (max-width: 1000px) {
  .services-grid {
    grid-auto-flow: column;
    grid-auto-columns: 78%;
    grid-template-columns: unset;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
  }
  .service-card { scroll-snap-align: start; }
}

/* ---------- Package ---------- */
.package-section {
  padding: 3rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  background: #f7f1e8;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}

.package-card {
  background: #fff;
  border: 1px solid var(--orange);
  border-radius: 12px;
  padding: 1.6rem 1.8rem;
}

.package-card h3 {
  text-align: center;
  color: var(--maroon);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.package-card ul {
  list-style: disc;
  padding-left: 1.3rem;
  color: #444;
  line-height: 1.9;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .package-grid { grid-template-columns: 1fr; }
}

/* ---------- Gallery ---------- */
.gallery-section {
  padding: 3rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.gallery-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.gallery-preview img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transition: transform 0.2s ease;
}

.gallery-preview img:hover {
  transform: scale(1.04);
}

.view-all-btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 0.75rem 1.8rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}

.view-all-btn:hover { background: var(--maroon); }

@media (max-width: 768px) {
  .gallery-preview { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Gallery Modal ---------- */
.gallery-modal {
  position: fixed;
  inset: 0;
  background: rgba(20, 8, 8, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1.5rem;
}

.gallery-modal[hidden] {
  display: none;
}

.gallery-modal-inner {
  background: var(--cream);
  border-radius: 14px;
  width: 100%;
  max-width: 980px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.gallery-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.4rem;
  background: var(--maroon);
  color: #fff;
}

.gallery-modal-header h3 {
  color: var(--gold);
  font-size: 1.2rem;
}

.modal-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.gallery-modal-scroll {
  overflow-y: auto;
  padding: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.gallery-modal-scroll img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

@media (max-width: 500px) {
  .gallery-modal-scroll {
    grid-template-columns: 1fr;
  }
}

/* ---------- Contact ---------- */
.contact-section {
  text-align: center;
  padding: 3.5rem 2rem;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: #fff;
}

.section-heading.light {
  color: var(--gold);
}

.section-heading.light::after {
  background: var(--gold);
}

.contact-sub {
  opacity: 0.9;
  margin-bottom: 2.2rem;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 1.4rem 1.6rem;
  min-width: 220px;
  flex: 1 1 220px;
  max-width: 260px;
}

.contact-card h3 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.contact-number {
  display: block;
  opacity: 0.9;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.contact-actions {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
}

.btn-call, .btn-whatsapp {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.85rem;
  color: #fff;
}

.btn-call { background: var(--orange); }
.btn-call:hover { background: #c65a1c; }

.btn-whatsapp { background: #25d366; }
.btn-whatsapp:hover { background: #1ea952; }

.contact-location {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.4rem;
  padding: 0.7rem 1.4rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid var(--gold);
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.pin-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: var(--gold);
  border-radius: 50%;
  font-size: 0.95rem;
}

@media (max-width: 500px) {
  .contact-actions { flex-direction: column; }
}

footer {
  text-align: center;
  padding: 1.5rem;
  background: var(--maroon);
  color: #fff;
}

@media (max-width: 768px) {
  .hero { flex-direction: column; min-height: auto; padding-top: 3.2rem; }
  .hero-photo { width: 200px; height: 240px; }
  .deco { display: none; }
}
