/* 
  CUSTOM STYLES
  This file keeps extra styling organized.
  Most layout uses Tailwind classes inside index.html.
*/

:root {
  --orange: #da6507;
  --rose: #f43f5e;
  --stone: #000000;
}

.font-display {
  font-family: "Playfair Display", serif;
}

body {
  font-family: "Inter", sans-serif;
}

.section-padding {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.nav-link {
  position: relative;
  transition: color 0.25s ease;
}

.nav-link:hover {
  color: #44753A;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 2px;
  width: 0;
  background: #44753A;
  transition: width 0.25s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-link {
  border-radius: 0.9rem;
  padding: 0.8rem 1rem;
  background: #44753A;
}

.mobile-link:hover {
  background: #44753a9c;
}

.section-kicker {
  margin-bottom: 0.75rem;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--orange);
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  font-weight: 800;
  line-height: 1;
  color: #1c1917;
}

.section-subtitle {
  margin-top: 1.25rem;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #57534e;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  background: white;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(28, 25, 23, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(244, 63, 94, 0.08));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 80px rgba(28, 25, 23, 0.13);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card > * {
  position: relative;
}

.service-card h3 {
  margin-top: 1.25rem;
  font-size: 1.45rem;
  font-weight: 900;
  color: #1c1917;
}

.service-card p {
  margin-top: 0.8rem;
  color: #57534e;
  line-height: 1.7;
}

.icon-bubble {
  display: grid;
  height: 4rem;
  width: 4rem;
  place-items: center;
  border-radius: 1.35rem;
  background: linear-gradient(135deg, #fb923c, #f43f5e);
  font-size: 1.7rem;
  box-shadow: 0 16px 35px rgba(249, 115, 22, 0.3);
}

.menu-box {
  overflow: hidden;
  border-radius: 1.8rem;
  background: white;
  color: #1c1917;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.menu-box img {
  height: 13rem;
  width: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.menu-box:hover img {
  transform: scale(1.06);
}

.menu-box div {
  padding: 1.4rem;
}

.menu-box h3 {
  font-size: 1.25rem;
  font-weight: 900;
}

.menu-box p {
  margin-top: 0.5rem;
  color: #57534e;
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.gallery-grid img {
  height: 20rem;
  width: 100%;
  border-radius: 1.7rem;
  object-fit: cover;
  box-shadow: 0 18px 55px rgba(28, 25, 23, 0.12);
}

.gallery-grid img:nth-child(1) {
  grid-column: span 5;
}

.gallery-grid img:nth-child(2) {
  grid-column: span 7;
}

.gallery-grid img:nth-child(3) {
  grid-column: span 7;
}

.gallery-grid img:nth-child(4) {
  grid-column: span 5;
}

.process-card {
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  padding: 2rem;
  backdrop-filter: blur(12px);
}

.process-card span {
  display: inline-flex;
  margin-bottom: 1.5rem;
  color: #fdba74;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.process-card h3 {
  font-size: 1.35rem;
  font-weight: 900;
}

.process-card p {
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

label {
  display: block;
  color: #1c1917;
  font-size: 0.9rem;
  font-weight: 900;
}

input,
textarea {
  margin-top: 0.45rem;
  width: 100%;
  border-radius: 1rem;
  border: 1px solid #e7e5e4;
  background: #fafaf9;
  padding: 0.95rem 1rem;
  font: inherit;
  color: #1c1917;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: #f17014;
  background: white;
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.15);
}

/* Mobile fixes */
@media (max-width: 768px) {
  .section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img,
  .gallery-grid img:nth-child(1),
  .gallery-grid img:nth-child(2),
  .gallery-grid img:nth-child(3),
  .gallery-grid img:nth-child(4) {
    grid-column: auto;
    height: 16rem;
  }
}
