/* ===== FARMHOUSE PREMIUM CSS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Lato:wght@300;400;700&family=Dancing+Script:wght@600&display=swap');

:root {
  --forest:   #1a2e1a;
  --cream:    #f5f0e8;
  --gold:     #c8963e;
  --terra:    #d4956a;
  --offwhite: #fefcf7;
  --dark:     #111a11;
  --light-green: #4a7c4a;
  --muted:    #8a7a6a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--offwhite);
  color: var(--forest);
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== NAVBAR ===== */
.navbar {
  background: transparent;
  padding: 1rem 0;
  transition: all 0.4s ease;
  z-index: 1000;
}
.navbar.scrolled {
  background: rgba(26, 46, 26, 0.97) !important;
  backdrop-filter: blur(12px);
  padding: 0.6rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.navbar-brand {
  font-family: 'Dancing Script', cursive;
  font-size: 1.9rem;
  color: var(--offwhite) !important;
  letter-spacing: 1px;
}
.navbar-brand span { color: var(--gold); }
.nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin: 0 0.3rem;
  padding: 0.5rem 0.8rem !important;
  position: relative;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.nav-link:hover { color: var(--gold) !important; }
.nav-link:hover::after { width: 70%; }
.navbar-toggler { border: 1px solid rgba(255,255,255,0.4); }
.navbar-toggler-icon { filter: invert(1); }

/* ===== HERO ===== */
#home {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--forest) 0%, #2d4a2d 40%, #1a3520 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(200,150,62,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(212,149,106,0.07) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--offwhite);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}
.hero-btns {
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}
.btn-gold {
  background: var(--gold);
  color: var(--forest);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.78rem;
  padding: 0.85rem 2.2rem;
  border: none;
  border-radius: 0;
  transition: all 0.3s ease;
}
.btn-gold:hover {
  background: var(--terra);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200,150,62,0.35);
}
.btn-outline-light-custom {
  background: transparent;
  color: var(--offwhite);
  border: 1px solid rgba(255,255,255,0.4);
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.78rem;
  padding: 0.85rem 2.2rem;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}
.btn-outline-light-custom:hover {
  background: rgba(255,255,255,0.1);
  color: var(--gold);
  border-color: var(--gold);
}

/* SVG Wheat Animation */
.hero-visual {
  position: relative;
  opacity: 0;
  animation: fadeIn 1.2s ease 1s forwards;
}
.wheat-svg { width: 100%; max-width: 520px; }
.wheat-stalk { transform-origin: bottom center; }
.w1 { animation: sway 3.5s ease-in-out infinite; }
.w2 { animation: sway 3.5s ease-in-out 0.4s infinite; }
.w3 { animation: sway 3.5s ease-in-out 0.8s infinite; }
.w4 { animation: sway 3.5s ease-in-out 0.2s infinite; }
.w5 { animation: sway 3.5s ease-in-out 0.6s infinite; }
@keyframes sway {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
}
.hero-badge {
  position: absolute;
  bottom: 2rem; right: 1rem;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  animation: spin-slow 15s linear infinite;
}
.hero-badge span:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
}
.hero-badge span:last-child {
  font-family: 'Lato', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 1px;
  color: var(--forest);
  text-transform: uppercase;
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 0.4rem;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}
.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-dot {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  top: -40px; left: 0;
  width: 1px; height: 40px;
  background: var(--gold);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -40px; }
  100% { top: 40px; }
}

/* ===== SECTION COMMONS ===== */
.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Lato', sans-serif;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.divider-gold {
  width: 50px; height: 2px;
  background: var(--gold);
  margin: 1.2rem 0 1.5rem;
}

/* ===== ABOUT ===== */
#about { background: var(--cream); padding: 6rem 0; }
.about-img-wrap {
  position: relative;
  padding: 1.5rem 0 1.5rem 1.5rem;
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: calc(100% - 1.5rem);
  height: calc(100% - 1.5rem);
  border: 2px solid var(--gold);
  pointer-events: none;
}
.about-img-wrap img {
  width: 100%;
  display: block;
  filter: sepia(15%) saturate(1.1);
  transition: filter 0.4s;
}
.about-img-wrap:hover img { filter: sepia(0%) saturate(1.2); }
.about-stats {
  display: flex; gap: 2rem;
  margin-top: 2.5rem;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
}
.about-text {
  color: #4a4a3a;
  line-height: 1.9;
  font-size: 1rem;
}
.feature-list { list-style: none; margin-top: 1.5rem; }
.feature-list li {
  padding: 0.5rem 0;
  color: #4a4a3a;
  font-size: 0.95rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.feature-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== GALLERY ===== */
#gallery { background: var(--forest); padding: 6rem 0; }
#gallery .section-title { color: var(--offwhite); }
#gallery .section-eyebrow { color: var(--gold); }
#gallery .divider-gold { background: var(--terra); }
.gallery-grid { margin-top: 3rem; }
.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: #111;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,46,26,0.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex; align-items: flex-end;
  padding: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text {
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-overlay-text { transform: translateY(0); }
/* grid heights */
.g-tall { height: 420px; }
.g-short { height: 200px; }
.g-medium { height: 310px; }

/* ===== CONTENT / EXPERIENCE ===== */
#content { background: var(--offwhite); padding: 6rem 0; }
.experience-card {
  background: white;
  padding: 2.5rem 2rem;
  border-bottom: 3px solid transparent;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.experience-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.experience-card:hover::before { width: 100%; }
.experience-card:hover {
  box-shadow: 0 20px 60px rgba(26,46,26,0.12);
  transform: translateY(-4px);
}
.exp-icon {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  display: block;
}
.exp-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--forest);
  margin-bottom: 0.75rem;
}
.exp-text {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

/* ===== CTA BANNER ===== */
.cta-section {
  background: linear-gradient(135deg, var(--gold) 0%, var(--terra) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.15)'/%3E%3C/svg%3E") repeat;
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: white;
  margin-bottom: 1rem;
}
.cta-sub { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: 2rem; }
.btn-white {
  background: white;
  color: var(--forest);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.78rem;
  padding: 0.85rem 2.5rem;
  border: none;
  border-radius: 0;
  transition: all 0.3s ease;
}
.btn-white:hover {
  background: var(--forest);
  color: white;
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  padding: 4rem 0 2rem;
}
.footer-brand {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  color: var(--offwhite);
  margin-bottom: 1rem;
  display: block;
}
.footer-brand span { color: var(--gold); }
.footer-text { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.8; }
.footer-heading {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.footer-contact span { color: var(--gold); font-size: 1rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 3rem;
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-visual { margin-top: 3rem; }
  .about-stats { justify-content: center; }
  .g-tall { height: 300px; }
  .g-short { height: 180px; }
  .g-medium { height: 240px; }
}
@media (max-width: 767px) {
  #home { padding: 6rem 0 4rem; }
  .hero-title { font-size: 2.5rem; }
  .g-tall, .g-short, .g-medium { height: 220px; }
  .about-img-wrap { padding: 1rem 0 1rem 1rem; }
  .cta-section { padding: 3rem 0; }
}
@media (max-width: 575px) {
  .hero-btns { flex-direction: column; gap: 1rem; }
  .hero-btns .btn-gold,
  .hero-btns .btn-outline-light-custom { width: 100%; text-align: center; }
  .about-stats { gap: 1.2rem; }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .w1, .w2, .w3, .w4, .w5,
  .scroll-dot::after,
  .hero-badge { animation: none !important; }
  .reveal, .reveal-left, .reveal-right { transition: none !important; }
}

.logo-container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.logo-img{
    max-width: 100%;
    width: 450px;      /* गरजेनुसार कमी-जास्त करा */
    height: auto;
    object-fit: contain;
}