/*
selector {
  property: value; 
  }
*/

body{
    margin: 3;
    font-family: 'Georgia', serif;
    background: #fafafa;
    color: #333;
}

.hero{
background: url('https://images.squarespace-cdn.com/content/v1/6274302dd4f93644d52b0ce9/7bb8485a-3947-4526-9c8d-769f5c28b4fc/Asian') center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  margin: 10px;
}


.hero2{
background: url('https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSc5EWWUc1qGyRT5xikwlZTNXhQjYtpnnz0NEOV2kssdR4gw0HhGbL3lEcbCiQTswTZWA4669yaJxaWUUQe57lexi_5Gz0lLUFNhbBIVfcvVQ') center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  margin: 10px;
}


.hero::after{
    content: "";
    background: rgba(0,0,0,0.5);
    position: absolute;
    inset:0
}

.hero-text{
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 2.5em;
    margin-bottom: 0.3em;
}

.hero-button {
    background: #b38958;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight:bold;
}

.main-container{
    display: flex;
    max-width: 1200px;
    margin: 40px auto;
    gap: 40px;
    padding: 0 20px;
}

.main-content{
    flex: 3;
}

.sidebar{
    flex: 1;
    background: #fff;
    padding: 20px;
    border-left: 2px solid #eee;
}

.widget{
    margin-bottom: 30px;
}

.widget h3{
    margin-top: 0;
    color: #333;
}

.slideshow img {
    width: 100%;
    display: none;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0,0,0,0.1);
}

.slideshow img.active{
    display:block;
    animation: fade 1.2s ease-in-out;
}

@keyframes fade{
    from {opacity: 0.3;}
    to {opacity: 1;}
}

.timeline-section{
    background: #fff;
    padding: 40px 20px;
    border-radius:8px;
    box-shadow: 0 0 12px rgba(0,0,0,0.5);
    margin: 60px 0;
}

.timeline-section h2{
    text-align: center;
    margin-bottom: 40px;
    font-size: 2em;
    color: #6c4f3d;
}

.timeline-event{
    border-left: 5px solid #b38958;
    background: #fdf8f2;
    padding: 20px 20px 10px;
    margin-bottom: 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3 ease;
}

.timeline-event:hover{
    background: #f7f1e9;
}

.event-header{
    font-weight: bold;
    font-size: 1.2rem;
    color: #4a3f35;
}

.event-details{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: #555;
    margin-top: 10px;
}

.timeline-event.active .event-details{
    max-height: 500px;
}

.sidebar .widget ul li a{
    display: inline-block;
    background-color: #b38958;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 8px;
    transition: background 0.3 ease;
}

.sidebar .widget ul li a:hover{
    background-color: #996e3e;
}

#kala-news{
    text-align: center;
    margin: 20px;
    
}

.navbaryay {
  background-color: #333;
  padding: 10px 0;
}

.navbaryay ul {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.navbaryay ul li a {
  color: white;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  background-color: #b38958;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.navbaryay ul li a:hover {
  background-color: #555;
}


.navbaryay {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.gallery-container {
    display: flex;
    justify-content: center;  
    align-items: center;      
    min-height: 100vh;        
    padding-top: 500px;      
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    width: 90%; 
    max-width: 1200px; 
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}


.gallery-item img:hover {
    transform: scale(1.05);
}

iframe{
    text-align: center;
}