/* main.css - layout and shared styles */
:root{--max-width:1100px}
*{box-sizing:border-box}
/* body{font-family:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Noto Sans', sans-serif; margin:0; color:#222; background:#f7f7f7} */

body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

.container{max-width:var(--max-width); margin:24px auto; padding:0 16px}
header.top-nav{background:#ffffff; border-bottom:1px solid #e6e6e6; position:sticky; top:0; z-index:50}
header .nav-inner{display:flex; align-items:center; justify-content:space-between; max-width:var(--max-width); margin:0 auto; padding:10px 16px}
.brand{display:flex; align-items:center; gap:10px}
.brand img{width:44px; height:44px; object-fit:cover; border-radius:6px}
.brand .brand-text{font-weight:700; text-decoration:none; color:inherit}
nav.top-links{display:flex; gap:12px; align-items:center}
nav.top-links a{padding:8px 10px; text-decoration:none; color:inherit; border-radius:6px}
nav.top-links a:hover{background:rgba(0,0,0,0.04)}
main.card{background:#fff; padding:18px; border-radius:10px; box-shadow:0 1px 3px rgba(0,0,0,0.04); margin-top:18px}
.gallery {display:flex; gap:12px; flex-wrap:wrap}
.gal-fit{width:200px; height:130px; object-fit:cover; border-radius:8px; box-shadow:0 1px 2px rgba(0,0,0,0.06)}
.thumb{width:200px; height:130px; object-fit:cover; border-radius:8px; box-shadow:0 1px 2px rgba(0,0,0,0.06)}
.map-embed{margin-top:8px}
footer.bottom-nav-tamil{background:#fff; border-top:1px solid #e6e6e6; padding:12px 16px; margin-top:32px}
footer.bottom-nav-tamil nav{display:flex; gap:10px; flex-wrap:wrap}
.siblings-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(160px,1fr)); gap:12px; margin-top:12px}
.sibling-card{background:#fff; padding:10px; border-radius:8px; text-align:center; cursor:pointer}
.sibling-card img{width:100%; height:140px; object-fit:cover; border-radius:6px}
.modal{position:fixed; inset:0; display:none; align-items:center; justify-content:center; background:rgba(0,0,0,0.5); z-index:200}
.modal .dialog{background:#fff; padding:18px; border-radius:8px; max-width:520px; width:90%}

footer.footer-nav{background:#ffffff; border-bottom:1px solid #e6e6e6; position:sticky; top:0; z-index:50}
footer .nav-inner-bottom{display:flex; align-items:center; justify-content:space-between; max-width:var(--max-width); margin:0 auto; padding:10px 120px}
.brand{display:flex; align-items:center; gap:10px}
.brand img{width:44px; height:44px; object-fit:cover; border-radius:6px}
.brand .brand-text{font-weight:700; text-decoration:none; color:inherit}
nav.bottom-nav-tamil{display:flex; gap:12px; align-items:center}
nav.bottom-nav-tamil a{padding:8px 10px; text-decoration:none; color:inherit; border-radius:6px}
nav.bottom-nav-tamil a:hover{background:rgba(0,0,0,0.04)}

.features-section {
  text-align: center;
  padding: 50px 20px;
}

.features-section h2 {
  color: #3f51b5;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative;
}

.features-section h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #3f51b5;
  margin: 8x auto 0;
}

.features-section p {
  max-width: 700px;
  margin: 0 auto;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

.features-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-text {
  flex: 1;
  padding-right: 30px;  
}

.feature-text h3 {
  font-size: 20px;
  color: #222;
  margin-bottom: 20px;
}

.feature-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.feature-image {
  flex: 1;
  text-align: right;
}

.feature-image img {
  max-width: 100%;
  border-radius: 8px;
}
/* 
@media (max-width:768px) {
  .features-content {
    flex-direction: column;
    text-align: center;
  }

  .feature-text {
    padding-right: 0;
    margin-bottom: 20px;
  }

  .feature-image {
    text-align: center;
  }
}


.modal.show{display:flex}
@media (max-width:700px){
  nav.top-links{display:none}
  .brand-text{font-size:18px}
} */
