/* ===== Made by Liv — Global Styles ===== */

/* ---------- CSS Variables ---------- */
:root {
  --sage:        #5BA8A0;
  --sage-light:  #7DC4BC;
  --sage-pale:   #D4EDEA;
  --sage-dark:   #3D8A82;
  --gold:        #C9A032;
  --gold-light:  #E0BE56;
  --gold-pale:   #FFF8DC;
  --gold-dark:   #A8821A;
  --cream:       #D4EDEA;
  --charcoal:    #3A3A3A;
  --white:       #FFFFFF;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Poppins', 'Segoe UI', sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ---------- Utility ---------- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.35);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--sage-dark);
  border: 2px solid var(--sage);
}
.btn-outline:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-2px);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--sage-dark);
  text-align: center;
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center;
  color: #777;
  margin-bottom: 48px;
  font-size: 1.05rem;
}

/* ---------- Header / Nav ---------- */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(212, 237, 234, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(143, 174, 139, 0.15);
  transition: box-shadow 0.3s;
}
header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--sage-dark);
  font-weight: 700;
  letter-spacing: 0.5px;
}
.logo span {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  color: var(--charcoal);
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover       { color: var(--sage-dark); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active       { color: var(--sage-dark); }
.nav-links a.active::after { width: 100%; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  width: 26px; height: 2.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: 0.3s;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(143,174,139,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(201,168,76,0.08) 0%, transparent 50%),
    var(--cream);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.1), transparent 70%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143,174,139,0.1), transparent 70%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  line-height: 1.15;
  color: var(--sage-dark);
  margin-bottom: 20px;
}
.hero-text h1 .accent {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.15rem;
  color: #666;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-graphic {
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6bb5ad, #4d9e96);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 24px 70px rgba(91,168,160,0.35);
  border: none;
  overflow: hidden;
}

.hero-logo-img {
  width: 92%;
  height: 92%;
  object-fit: cover;
  border-radius: 50%;
}
.hero-graphic::before {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 2px dashed var(--gold-light);
  animation: spin 30s linear infinite;
  z-index: 1;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-graphic-inner {
  display: none;
}
.hero-graphic-inner .icon { font-size: 4rem; margin-bottom: 12px; }
.hero-graphic-inner p {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
}

/* ---------- Features / What I Make ---------- */
.features {
  padding: 100px 0;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.feature-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(143,174,139,0.12);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.06);
}
.feature-icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.feature-icon.sage  { background: var(--sage-pale);  color: var(--sage-dark); }
.feature-icon.gold  { background: var(--gold-pale);  color: var(--gold-dark); }

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--sage-dark);
  margin-bottom: 10px;
}
.feature-card p { color: #777; font-size: 0.95rem; }

/* ---------- Gallery ---------- */
.gallery {
  padding: 100px 0;
  background:
    linear-gradient(135deg, var(--sage-pale) 0%, var(--cream) 50%, var(--gold-pale) 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.gallery-grid .gallery-item:nth-child(-n+3) {
  grid-column: span 2;
}
.gallery-grid .gallery-item:nth-child(4) {
  grid-column: 2 / 4;
}
.gallery-grid .gallery-item:nth-child(5) {
  grid-column: 4 / 6;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(143,174,139,0.1);
  position: relative;
}
.gallery-item.has-image {
  background: var(--sage-pale);
}
.gallery-item.has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item.has-image:hover img {
  transform: scale(1.08);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(94,122,90,0.6), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}
.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.gallery-item:hover::after { opacity: 1; }

.gallery-label {
  position: absolute;
  bottom: 16px; left: 16px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
}
.gallery-item:hover .gallery-label {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Testimonials ---------- */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  border-left: 4px solid var(--gold);
  position: relative;
}
.testimonial-card .quote-icon {
  font-size: 2.5rem;
  color: var(--gold-light);
  margin-bottom: 12px;
  line-height: 1;
}
.testimonial-card p {
  color: #555;
  font-style: italic;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.testimonial-card .author {
  font-weight: 600;
  color: var(--sage-dark);
  font-size: 0.9rem;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--sage-dark), var(--sage));
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
}
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  margin-bottom: 16px;
  position: relative;
}
.cta-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
  position: relative;
}
.cta-banner .btn-primary {
  background: var(--gold);
  font-size: 1.05rem;
  padding: 16px 40px;
}
.cta-banner .btn-primary:hover { background: var(--gold-dark); }

/* ---------- Footer ---------- */
footer {
  padding: 60px 0 30px;
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo { color: var(--sage-light); font-size: 1.4rem; }
.footer-brand .logo span {
  -webkit-text-fill-color: var(--gold-light);
}
.footer-brand p { margin-top: 12px; font-size: 0.9rem; line-height: 1.6; }

.footer-links h4,
.footer-social h4 {
  color: var(--gold-light);
  font-family: var(--font-heading);
  margin-bottom: 16px;
  font-size: 1.1rem;
}
.footer-links a {
  display: block;
  padding: 4px 0;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold-light); }

.social-icons { display: flex; gap: 12px; }
.social-icons a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.3s, transform 0.3s;
}
.social-icons a:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
}

/* ---------- About Page ---------- */
.page-hero {
  padding: 140px 0 80px;
  text-align: center;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(143,174,139,0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(201,168,76,0.07) 0%, transparent 50%),
    var(--cream);
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--sage-dark);
  margin-bottom: 12px;
}
.page-hero p { color: #777; font-size: 1.1rem; }

.about-content {
  padding: 80px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--sage-pale), var(--gold-pale));
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--sage-dark);
  margin-bottom: 20px;
}
.about-text p {
  color: #666;
  margin-bottom: 16px;
  font-size: 1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.value-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.value-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: var(--sage-pale);
  color: var(--sage-dark);
}
.value-item h4 {
  font-size: 0.95rem;
  color: var(--sage-dark);
  margin-bottom: 2px;
}
.value-item p {
  font-size: 0.85rem;
  color: #888;
  margin: 0;
}

/* ---------- Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .hero-inner        { grid-template-columns: 1fr; text-align: center; }
  .hero-text p       { margin: 0 auto 32px; }
  .hero-buttons      { justify-content: center; }
  .hero-visual       { display: none; }
  .features-grid     { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid      { grid-template-columns: repeat(6, 1fr); }
  .testimonial-cards { grid-template-columns: 1fr; }
  .about-grid        { grid-template-columns: 1fr; }
  .footer-inner      { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 600px) {
  .hero-text h1      { font-size: 2.4rem; }
  .section-title     { font-size: 1.8rem; }
  .features-grid     { grid-template-columns: 1fr; }
  .gallery-grid      { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .gallery-item:nth-child(-n+3),
  .gallery-grid .gallery-item:nth-child(4),
  .gallery-grid .gallery-item:nth-child(5) {
    grid-column: span 1;
  }
  .values-grid       { grid-template-columns: 1fr; }

  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    z-index: 999;
    background: var(--sage-pale);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 16px;
    transform: translateY(-120%);
    visibility: hidden;
    opacity: 0;
    transition: transform 0.3s, visibility 0.3s, opacity 0.3s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }
  .nav-links.open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }
  .menu-toggle { display: flex; }

  .nav-links li { text-align: center; }

  .nav-links .btn.btn-primary {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    margin-top: 4px;
  }
  .nav-links .btn.btn-primary::after {
    display: none;
  }
}
