/* =====================
   POLISHED INTENTIONS
   MASTER GLOBAL STYLE (UNIFIED SYSTEM)
===================== */

/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Italiana&family=Playfair+Display:wght@400;500;600&family=Kaushan+Script&display=swap');

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =====================
   GLOBAL BODY
===================== */
body {
  font-family: 'Italiana', serif;
  color: #f2eee6;
  text-align: center;
  line-height: 1.75;

  background: linear-gradient(
    180deg,
    rgba(163,184,153,0.45) 0%,   /* sage */
    rgba(4,106,56,0.35) 35%,     /* emerald */
    rgba(0,0,0,0.95) 75%,        /* deep fade into black */
    #000000 100%
  );
}

/* =====================
   GLOBAL HEADINGS
===================== */
h1, h2, h3 {
  color: #c9a24e;
  letter-spacing: 1px;
}

/* =====================
   FULL WIDTH LOGO HEADER
===================== */
.logo-header {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto 20px;

  background: #000;
  padding: 30px 20px;

  border-radius: 28px;

  display: flex;
  justify-content: center;
  align-items: center;

  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

/* logo image inside */
.logo-wide {
  width: 320px;
  max-width: 85%;
  height: auto;
}

/* =====================
   HERO
===================== */
.hero {
  padding: 90px 20px 70px;
  background: rgba(4,106,56,0.12);
}

.tagline {
  font-size: 24px;
  margin-bottom: 10px;
}

.subtext {
  color: #e6e1d8;
  margin-bottom: 30px;
}

/* =====================
   BUTTON
===================== */
.button {
  font-family: 'Kaushan Script', cursive;
  background: #000;
  color: #c9a24e;
  padding: 14px 38px;
  text-decoration: none;
  border-radius: 50px;
  display: inline-block;
  border: 1px solid #c9a24e;
  transition: 0.3s ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 18px rgba(201,162,78,0.35);
}

/* =====================
   DIVIDER
===================== */
.divider {
  width: 80px;
  height: 2px;
  margin: 50px auto;
  background: linear-gradient(
    90deg,
    transparent,
    #a3b899,
    #046a38,
    transparent
  );
}

/* =====================
   SECTIONS
===================== */
.section {
  padding: 100px 20px;
  background: rgba(0,0,0,0.55);
}

/* =====================
   SERVICES
===================== */
.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.card {
  width: 240px;
  padding: 25px;
  background: rgba(4,106,56,0.15);
  border: 1px solid rgba(163,184,153,0.35);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: #c9a24e;
  box-shadow: 0 0 25px rgba(201,162,78,0.35);
}

/* =====================
   GALLERY
===================== */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.gallery img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(163,184,153,0.4);
}

/* =====================
   FEATURE IMAGE (SERVICE PAGES)
===================== */
.feature-img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(201,162,78,0.4);
  margin: 25px auto;
}

/* =====================
   MENU (PRICING TEXT ONLY DIFFERENCE)
===================== */
.menu {
  max-width: 650px;
  margin: auto;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  line-height: 2.2;
  color: #e6e1d8;
}

.section-title {
  font-family: 'Italiana', serif;
  color: #c9a24e;
  font-size: 22px;
  margin-top: 25px;
}

.line {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(163,184,153,0.15);
  padding: 6px 0;
}

/* =====================
   FOOTER
===================== */
.footer {
  padding: 50px;
  font-size: 13px;
  color: #d6d0c6;
  background: rgba(0,0,0,0.7);
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px) {
  .logo-wide {
    width: 250px;
  }

  .card {
    width: 80%;
  }

  .gallery img {
    width: 160px;
    height: 160px;
  }
}
