@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --primary: #1b5e20;
  --primary-dark: #144518;
  --accent: #c8a951;
  --accent-dark: #b08d3e;
  --earth: #5d4037;
  --bg: #faf8f1;
  --card: #ffffff;
  --text: #2c3e50;
  --muted: #5d6d7e;
  --border: #e8e4df;
  --shadow: rgba(0,0,0,0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

/* Banner Header */
.banner-header {
  position: relative;
  width: 100%;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, #0d3b0f 0%, #1b5e20 40%, #2e7d32 70%, #4a7c23 100%);
  overflow: hidden;
}

.banner-header .banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  opacity: 0.55;
}

.banner-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(200,169,81,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 2;
}

.banner-header .banner-content {
  position: relative;
  z-index: 3;
  padding: 40px 24px;
}

.banner-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.banner-header .subtitle {
  color: var(--accent);
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.banner-header .banner-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Floating Navigation */
.floating-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-bottom: 3px solid var(--accent);
}

.floating-nav ul {
  list-style: none;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 16px;
}

.floating-nav ul li {
  flex: 1 1 auto;
  text-align: center;
}

.floating-nav ul li a {
  display: block;
  padding: 20px 32px;
  text-decoration: none;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
}

.floating-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.floating-nav ul li a:hover::after,
.floating-nav ul li a.active::after {
  width: 100%;
}

.floating-nav ul li a:hover,
.floating-nav ul li a.active {
  color: var(--accent-dark);
  background: rgba(200,169,81,0.06);
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px;
}

/* Hero Section */
.hero {
  text-align: center;
  margin-bottom: 50px;
}

.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--primary-dark);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.hero h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent);
  margin: 16px auto 0;
  border-radius: 2px;
}

.hero p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Cards Grid */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.card {
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.card-content {
  padding: 28px 24px;
}

.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Content Sections */
.content-section {
  background: var(--card);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 30px var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 32px;
}

.content-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 16px;
}

.content-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.content-section p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 1rem;
}

/* Video Container */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 30px var(--shadow);
  margin-top: 32px;
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 16px;
}

/* Map Container */
.map-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 30px var(--shadow);
  margin-top: 32px;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 16px;
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.3s ease;
  padding: 24px;
  border-radius: 16px;
  background: var(--card);
  box-shadow: 0 4px 20px var(--shadow);
  border: 1px solid var(--border);
  min-width: 140px;
}

.social-link:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.social-link svg {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}

.social-link span {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

/* Contact Info */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.contact-item {
  background: var(--bg);
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid var(--accent);
}

.contact-item h4 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.contact-item p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

/* Footer */
footer {
  text-align: center;
  padding: 40px 24px;
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
  margin-top: 40px;
  background: var(--card);
}

footer strong {
  color: var(--primary-dark);
}

/* Responsive */
@media (max-width: 768px) {
  .banner-header { min-height: 260px; }
  .banner-header h1 { font-size: 2.2rem; letter-spacing: 1px; }
  .banner-header .subtitle { font-size: 0.95rem; letter-spacing: 2px; }
  .floating-nav ul li a { padding: 16px 20px; font-size: 0.8rem; }
  .container { padding: 40px 16px; }
  .content-section { padding: 24px; }
  .hero h2 { font-size: 1.8rem; }
  .cards { grid-template-columns: 1fr; }
  .social-links { gap: 20px; }
}

@media (max-width: 480px) {
  .banner-header h1 { font-size: 1.7rem; }
  .floating-nav ul li a { padding: 14px 12px; font-size: 0.75rem; letter-spacing: 0.5px; }
}
