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

body {
    font-family: 'Inter', sans-serif;
    background-color: #FAF7F0;
    color: #5A5E45;
    overflow-x: hidden;
}

h1, h2, h3, h4, .hero-tagline, .insight-author {
    font-family: 'Playfair Display', serif;
} 




nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;

    background: linear-gradient(to bottom, rgba(60, 65, 45, 0.98), rgba(60, 65, 45, 0.94), rgba(60, 65, 45, 0.7), rgba(60, 65, 45, 0.2));
    z-index: 1000;
    backdrop-filter: blur(8px);
}

.logo img {
    margin-top: 10px;
    height: 135px;
    width: auto;
    margin-bottom: 0px;
}

nav ul {
    display: flex;
    gap: 35px;
    list-style: none;
}

nav ul li a {
    color: #F5F1E6;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    letter-spacing: 0.5px;
}

nav ul li a:hover, nav ul li a.active {
    color: #D4CFB0;
    border-bottom: 2px solid #D4CFB0;
    padding-bottom: 5px;
}

.hero{
    height: 100vh;
    
    background:
    linear-gradient(rgba(0,0,0,0.35),rgba(0,0,0,0.35)),
    url("images/history-bg.jpg");
  background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

.hero-content{
    background: rgba(50,48,38,0.62);
    padding: 60px 80px;
    border-radius: 28px;
    max-width: 850px;
    animation: fadeUp 1.2s ease;
    backdrop-filter: blur(4px);
    
  }

.hero h1{
    color: white;
    font-size: 68px;
    margin: 0;
    font-family: 'Playfair Display', serif;
    }

.hero p{
    color: #F4F1E8;
    margin-top: 30px;
    font-size: 20px;
    line-height: 1.8;
    
}

@keyframes fadeUp{
    from{
        opacity: 0;
        transform: translateY(40px);
      }
    to{
        opacity: 1;
        transform: translateY(0);
        
        }
}

.timeline{
    position: relative;
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 20px;
  }

.timeline::before{
    content: "";
    position: absolute;
    left: 50%;

    top: 0;
    width: 4px;
     height: 100%;
    background: #C4BE9E;
    transform: translateX(-50%);
    
  }

.timeline-item{
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 120px;
    position: relative;
    
}

.timeline-item.reverse{
    flex-direction: row-reverse;
    
    }

.timeline-image{
    width: 42%;
    

}

.timeline-image img{
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transition: 0.4s ease;
    
}

.timeline-image img:hover{
    transform: scale(1.03);
    
  }

.timeline-text{
    width: 42%;
    background: white;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    
  }

.timeline-text h2{
    margin-top: 0;
    font-size: 38px;
    color: #5D5E46;
    font-family: 'Playfair Display', serif;
    
  }

.timeline-text p{
    font-size: 18px;
    line-height: 1.8;
    
 }

.quote-section{
    margin-top: 80px;
    padding: 140px 40px;
    text-align: center;
    
    background:
    linear-gradient(rgba(60,58,45,0.6),rgba(60,58,45,0.6)),
    url("images/quote-bg1.jpg");
    background-size: cover;
    background-position: center;
    
}

.quote-section p{
    color: white;
    font-size: 42px;
    font-family: 'Playfair Display', serif;
    max-width: 900px;
    margin: auto;
    line-height: 1.5;
    
  }

footer{
    text-align: center;
    padding: 18px;
    background: #4D4B35;
    color: white;
    
}

.reveal{
    opacity: 0;
    transform: translateY(40px);
    
  }


.reveal.active{
    opacity: 1;
    transform: translateY(0);
    transition: 1s ease;

}

.His-longevity{
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 80px 60px;
    
}

.longevity{
    width: 520px;
    text-align: center;
    background: linear-gradient(to bottom, white, #f7f4e8);
    padding: 0px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    transform: scale(1.05);
    
  }

.longevity img{
    width: auto;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    padding: 0px;
    
}

.longevity h4{
    font-size: 26px;
    margin-bottom: 10px;
    padding: 35px;
    font-family: 'Playfair Display', serif;
    color: #3A5A40;
    
  }

.longevity p{
    padding: 0px 35px 0px 35px;
    
}

.source{
    width: 360px;
    height: 460px;

    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    background-color: #f7f4e8;
    
  }

.img-box{
    width: 100%;
    height: 100%;
    
}

.img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
    align-items: center;
    
  }

.overlay{
    position: absolute;
    bottom: -100%;
     left: 0;
    width: 100%;
    height: 50%;
    color: white;
     display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    transition: 0.6s ease;
    
}

.overlay h4{
    font-size: 22px;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
    color: #5D5E46;
    
    padding-right: 5px;
     padding-left: 5px;
    
  }

.overlay p{
    font-size: 14px;
    line-height: 1.6;
    color: #5D5E46;
    padding-right: 10px;
    padding-left: 10px;
    
}

.source:hover .img-box img{
    width: 100%;
    height: 50%;
    transition: 0.7s ease;
    
  }

.source:hover .overlay{
    position: absolute;
    bottom: 0%;
    transition: 0.7s ease;
    
}

.longevity p{
    font-size: 17px;
    line-height: 1.7;
    color: #5D5E46;
    margin-bottom: 15px;
    
  }