/* Reset & base */
* { margin:0; padding:0; box-sizing:border-box; font-family: Arial, sans-serif; }
body { background:#fff; color:#333; line-height:1.6; }
.container { width:90%; max-width:1100px; margin:auto; }

/* Hero Section */
.hero {
   position: relative;
  overflow:hidden;
   width:100%;
  min-height:70vh;
  background:url('../images/dyuti-banner.png') center/cover no-repeat;  
  display:flex;
  justify-content:center;
  align-items:flex-start;
  color:#fff;
  padding-top:80px;
}
 
.hero::after {
  content:"";
  position:absolute;
  inset:0;   
  z-index:1;
}
.hero-brand {
  position: absolute;
  top: 18px;
  right: 22px;          /* whole block right side-il */
  display: flex;        
  align-items: center;   /* vertical align logo and text */
  gap: 12px;             /* space between logo and tagline */
  z-index: 5;
}

.hero-brand img {
  height: 90px; 
  filter: none !important; /* enforce no blur */
  backface-visibility: hidden; /* helps sharp rendering in some browsers */
  image-rendering: auto;
}

.hero .hero-tagline {
  font-family: 'Poppins', sans-serif;
   font-size: 0.9rem;
  letter-spacing: 0.6px;
  color: #652802;
  line-height: 1.35;
  text-shadow: 0 2px 4px rgba(0,0,0,.6);
  max-width: 200px;     /* adjust as needed to allow 2-line wrap */
  text-align: left;
  word-wrap: break-word;
}

/* Header / Menu */
header.topbar {  
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ff7a18;/* dark forest green */
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
header .nav {  max-width: 1200px;
    margin: auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;}
ul.menu { width:100%;
  display:flex;
  align-items:center;
  gap:20px; 
  list-style:none;  
  margin:0;
  padding:0;
}
ul.menu li a {
  color:#fff;
  text-decoration:none;
  font-weight:600;
  padding:8px 14px;
  transition:.3s;
}
.menu-right{
  margin-left:auto;
}
ul.menu li a:hover { color:#222; }
ul.menu .donate-menu{
  border:2px solid #fff;
  border-radius:30px;
  padding:4px 18px;
  box-shadow:0 4px 10px rgba(0,0,0,.25);
}
ul.menu .donate-menu:hover {
  background:#fff;
  color:#ff7a18;
  box-shadow:0 6px 18px rgba(0,0,0,.35);
  transform:translateY(-2px);
}

/* Sections */
.section { padding:60px 20px; text-align:center; font-family:'Arial',sans-serif; }
.section h2 { font-size:2rem; color:#D35400; margin-bottom:30px; }
.section p { font-size:1rem; margin-bottom:20px; text-align:justify; }
.section:nth-of-type(even) { background:#f9f9f9; }

/* Subtitles */
.about-subtitle{
  font-size:1.4rem;
  color:#2980B9;
  margin:40px 0 15px;
  text-align:left;
  border-left:4px solid #2980B9;
  padding-left:10px;
}

/* Lists */
.about-list {
  list-style:none;
  text-align:left;
  padding-left:20px;
  margin-bottom:20px;
}
.about-list li{
  position:relative;
  padding-left:25px;
  margin-bottom:10px;
}
.about-list li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:#27AE60;
  font-weight:bold;
}

/* Cards / Activities */
.cards {
  display:flex;
  justify-content:center;
  gap:2rem;
  flex-wrap:wrap;
}
.card{
  background:linear-gradient(135deg,#fffaf2,#fff1dc);
  padding:30px;
  width:250px;
  border-radius:14px;
  border:1px solid rgba(255,167,38,.35);
  box-shadow:0 8px 20px rgba(0,0,0,.12);
  transition:all .3s ease;
}

.card:hover{
  transform:translateY(-8px) scale(1.02);
  box-shadow:0 14px 30px rgba(0,0,0,.22);
}

.card h3{
  color:#D35400;
  margin-bottom:12px;
}
.card p { color:#555; font-size:0.95rem; line-height:1.5; }

/* Donate Section */
.donate-section .qr-container{ margin:20px 0; }
.donate-section .qr{ width:180px; max-width:50%; height:auto; border-radius:12px; box-shadow:0 5px 15px rgba(0,0,0,0.1); }
.donate-section .note{ font-style:italic; color:#555; }

/* Contact Section */
.contact-section a{ color:#2980B9; text-decoration:none; }
.contact-section a:hover{ text-decoration:underline; }
.contact-section .note{ font-style:italic; color:#555; margin-top:20px; }

/* Footer */
footer{ background:#333; color:#fff; text-align:center; padding:15px; }
section{
  scroll-margin-top: 70px;
}
/* Responsive */
 img{
  max-width:100%;
  height:auto;
}
html{
  scroll-behavior:smooth;
}
.enquiry-section {
  background: #f4f7fb;
  padding: 80px 20px;
  text-align: center;
}

.enquiry-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.enquiry-section p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

.enquiry-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.enquiry-btn {
  text-decoration: none;
  padding: 15px 35px;
  font-size: 18px;
  border-radius: 30px;
  transition: 0.3s ease;
  font-weight: 600;
}

.enquiry-btn.help {
  background: #2b7cff;
  color: #fff;
}

.enquiry-btn.volunteer {
  background: #28a745;
  color: #fff;
}

.enquiry-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
  @media(max-width:768px){

  /* HERO */
  .hero{
    height:55vh;
    padding-top:40px;
    background-position:center;
  }
  
  .hero-brand{
    top:12px;
    right:12px;
    gap:8px;
  }

  .hero-brand img{
    height:60px;
  }

  .hero .hero-tagline{
    font-size:0.65rem;
    max-width:140px;
    line-height:1.2;
  }

  /* MENU */
  header.topbar{
    overflow:hidden;
  }

  ul.menu{
    justify-content:space-between;
    gap:6px;   
  }

  ul.menu li{
    flex-shrink:0;
    list-style: none;
  }

  ul.menu li a{
    font-size:0.8rem;
    padding:5px 7px;
    white-space:nowrap;
  }

  /* SECTIONS */
  .section{
    padding:40px 15px;
  }

  .section h2{
    font-size:1.6rem;
  }

  .section p{
    font-size:0.95rem;
    text-align:left;
  }

  /* CARDS */
  .card{
    width:100%;
    max-width:320px;
    padding:22px;
  }
 

  .menu-right{
    margin-left:auto;
  }

}
@media(max-width:480px){

  .hero{
    height:50vh;
  }

  ul.menu li a{
    font-size:0.8rem;
  }

  .hero-brand img{
    height:50px;
  }
 
}
 
 