* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: #f7f4ef;
  color: #2c2c2c;
  line-height: 1.6;
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HERO */
.hero {
  min-height: 100vh;
  background: url("/assets/images/hero.png") center/cover no-repeat;
  position: relative;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
}

/* LOGO */
.logo {
  width: 540px;
  margin-bottom: 8px; /* VERY IMPORTANT */
  filter: drop-shadow(0 0 22px rgba(255, 255, 255, 1));
}

/* BRAND TEXT */
.brand-title {
  font-size: 46px;
  letter-spacing: 4px;
  margin: 6px 0 6px;
  color: #f6d18b;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.subtitle {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 14px;
}

/* META */
.location {
  font-size: 15px;
  opacity: 0.9;
}

.tagline {
  font-style: italic;
  margin: 14px 0 36px;
  font-size: 18px;
}

/* CTA */
.cta-button {
  padding: 14px 34px;
  background: #c98b2f;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #a56f1e;
  transform: translateY(-2px);
}

.cta-button.dark {
  background: #2f2a23;
}

/* SECTIONS */
.section {
  padding: 80px 0;
  text-align: center;
}

.section.light {
  background: #ffffff;
}

.section h2 {
  font-size: 32px;
  color: #8b5a15;
  margin-bottom: 18px;
}

.section p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 17px;
}

/* FEATURES */
.features {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 32px 28px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.feature-card h3 {
  margin-bottom: 12px;
  color: #7a4a10;
  font-size: 20px;
}

/* FOOTER */
footer {
  background: #2f2a23;
  color: #ddd;
  padding: 40px 0;
  text-align: center;
  font-size: 14px;
}

footer a {
  color: #f0c27a;
  text-decoration: none;
}

.disclaimer {
  margin-top: 14px;
  font-size: 12px;
  opacity: 0.75;
}

/* MOBILE */
@media (max-width: 768px) {
  .logo {
    width: 300px;
  }

  .brand-title {
    font-size: 34px;
  }

  .subtitle {
    font-size: 20px;
  }

  .tagline {
    font-size: 16px;
  }
}

/* FOOTER RAMANA IMAGE */
.footer-ramana-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.footer-rlc-logo-img{

 width: 140px;
  margin-top: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}


.footer-copyright {
  margin-top: 18px;
  font-size: 12px;
  opacity: 0.6;
}

.map-section {
    margin: 40px 0;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 16px;
}

.map-section iframe {
    border-radius: 12px;
}
