/* GLOBAL SETTINGS */
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  margin: 0;
  background: linear-gradient(180deg, #7a8770 0%, #6b705c 40%, #5e6550 100%);
  color: #fefcf6;
  line-height: 1.7;
  overflow-x: hidden;
}

/* HEADINGS */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  margin: 0 0 10px 0;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

section {
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
  position: relative;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(122,135,112,0.95);
  padding: 12px;
  display: flex;
  justify-content: center;
  gap: 20px;
  z-index: 1000;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.navbar a:hover {
  opacity: 0.8;
}

/* LOGO */
.logo {
  text-align: center;
  padding: 30px 20px 20px;
}

.logo img {
  width: 360px;
  max-width: 80%;
  height: auto;
}

/* HERO */
.hero {
  text-align: center;
  padding: 50px 20px 40px;
  color: white;
  position: relative;
  background: linear-gradient(180deg, rgba(122,135,112,0.85) 0%, rgba(91,97,81,0.85) 100%);
}

.hero h1 {
  font-size: 2.6em;
  margin-bottom: 15px;
}

.hero p {
  max-width: 600px;
  margin: auto;
  margin-bottom: 20px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 30px;
  border: 1px solid #c9a646;
  color: #c9a646;
  background: transparent;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.btn:hover::after {
  left: 100%;
}

.btn:hover {
  background: #c9a646;
  color: white;
  box-shadow: 0 0 15px rgba(201,166,70,0.6);
}

/* SECTION TITLES */
.section-title {
  text-align: center;
  color: #fefcf6;
  font-size: 1.8em;
  margin-bottom: 20px;
}

/* CARDS */
.card {
  background: rgba(255,255,255,0.18);
  color: #fefcf6;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.1);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.card:hover::after {
  left: 100%;
}

.card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(201,166,70,0.4);
}

/* GRID */
.grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.grid .card {
  flex: 1 1 auto;
  min-height: 140px;
}

/* ABOUT */
.about-card {
  display: flex;
  align-items: center;
  gap: 25px;
  text-align: left;
}

.about-img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201,166,70,0.5);
  box-shadow: 0 0 25px rgba(201,166,70,0.4);
  transition: box-shadow 0.3s ease;
}

.about-img:hover {
  box-shadow: 0 0 35px rgba(201,166,70,0.6);
}

.about-text {
  flex: 1;
}

/* SERVICES */
.service-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px auto;
}

.gold-line {
  width: 40px;
  height: 2px;
  background: #c9a646;
  margin: 6px auto 12px auto;
  border-radius: 1px;
}

.card h3 {
  margin-bottom: 8px;
  font-weight: 600;
}

.card p {
  font-size: 14px;
  opacity: 0.95;
}

/* REVIEWS GRID FIX */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.review-stars {
  color: #c9a646;
  font-size: 18px;
  margin-bottom: 8px;
  text-align: center;
}

.review-initials {
  font-family: 'Playfair Display', serif !important;
  font-style: italic !important;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  color: #fefcf6;
  margin-top: 6px;
  opacity: 0.85;
}

/* FLOAT BUTTON */
.book-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #c9a646;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 13px;
}

/* SPARKLES */
.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #c9a646;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  animation: sparkle 1.5s linear forwards;
}

@keyframes sparkle {
  0% { transform: translateY(0) scale(0.3); opacity: 1; }
  50% { transform: translateY(-20px) scale(1); opacity: 0.8; }
  100% { transform: translateY(-40px) scale(0.5); opacity: 0; }
}

/* MOBILE */
@media(max-width:700px) {
  .grid { flex-direction: column; }
  .hero h1 { font-size: 2em; }
  .about-card { flex-direction: column; text-align: center; }
  .about-img { width: 110px; height: 110px; }
  .logo img { width: 180px; }
}
