*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    line-height:1.6;
    color:#333;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

header{
    position:fixed;
    width:100%;
    z-index:1000;

    background:transparent;
    box-shadow:none;

    transition:
        background 0.3s ease,
        box-shadow 0.3s ease;
}

header.scrolled{
    background:white;
    box-shadow:0 2px 10px rgba(0,0,0,.1);
}

.logo,
nav a{
    color:white;
    transition:color .3s ease;
    text-decoration: none;
}

header.scrolled .logo,
header.scrolled nav a{
    color:#333;
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

nav ul{
    display:flex;
    gap:20px;
    list-style:none;
}

.hero {
    position: relative;
    min-height: 100vh;
    background:
        url("../images/hero.jpg")
        center center / cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            rgba(0,0,0,.55),
            rgba(0,0,0,.65)
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    color: white;
    padding: 2rem;
}

.event-badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    margin-bottom: 1.5rem;
    font-weight: 600;
    margin-top: 40px;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: auto;
    opacity: .95;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.highlight {
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    padding: 12px 20px;
    border-radius: 30px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.btn-primary {
    background: #ff9800;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.btn-secondary {
    background: rgba(255,255,255,.15);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.3);
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.countdown-item {
    min-width: 90px;
    padding: 15px;
    border-radius: 12px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
}

.countdown-item span {
    display: block;
    font-size: 2rem;
    font-weight: bold;
}

.hero-stats {
    position: relative;
    z-index: 2;
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: min(1200px, 90%);
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #ff9800;
}

.label {
    color: #666;
}

@media(max-width:768px){

    .hero-stats{
        grid-template-columns:repeat(2,1fr);
    }

    .countdown-container{
        flex-wrap:wrap;
    }

    .hero-buttons{
        flex-direction:column;
    }
}

.btn{
    display:inline-block;
    margin-top:20px;
    background:#f4a300;
    color:white;
    padding:12px 24px;
    text-decoration:none;
    border-radius:5px;
}

.section{
    padding:100px 0;
}

.alt{
    background:#faf7f2;
}

h2{
    margin-bottom:30px;
    text-align:center;
}

.book-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
}

.book-card{
    background:white;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.1);

    display:flex;
    flex-direction:column;
}

.book-card img{
    width:100%;
    height:400px;
    object-fit:contain;   /* shows entire cover */
    background:#f8f8f8;
    padding:20px;
}

.book-card h3{
    padding:20px;
    text-align:center;
}

.event-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.card{
    padding:25px;
    background:white;
    border-radius:10px;
    box-shadow:0 2px 8px rgba(0,0,0,.1);
}

.mantra-box{
    font-size:1.6rem;
    text-align:center;
    margin:40px 0;
    color:#b55400;
}

footer{
    background:#222;
    color:white;
    text-align:center;
    padding:30px;
}

button{
    background:#f4a300;
    color:white;
    border:none;
    padding:15px 30px;
    cursor:pointer;
}

.image-divider{
    width: min(1200px, 90%);
    margin: -100px auto -100px;
    position: relative;
    z-index: 5;

    display: flex;
    gap: 20px;
    justify-content: center;
}

.image-divider img{
    width: calc(33.333% - 14px);
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.section-with-overlap-top{
    padding-top:220px;
}

.section-with-overlap-bottom{
    padding-bottom:220px;
}

section.programLayout {
	justify-content: center;
}

@media screen and (min-width:601px) {
	.programLayout {
		display: flex;
		flex-direction: row;
		column-gap: 20px;
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: flex-start;
	}
}

@media screen and (max-width:600px) {
	.programLayout {
		display: flex;
		flex-direction: column;
		column-gap: 20px;
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: flex-start;
	}
}

.programWelcome {
	align-items: center;
}

@media screen and (min-width:601px) {
	
	.welcomeText {
		background-color: none;
		width: auto;
		border: none;
		padding: none;
		margin: 20px 190px 20px 190px;
		font-family: Montserrat, Arial, sans-serif;
		text-align: center;
		font-size: 16px;
	}
}

@media screen and (max-width:600px) {
	
	.contentText {
		background-color: none;
		width: auto;
		border: none;
		padding: none;
		margin: 20px 20px 20px 20px;
		font-family: Montserrat, Arial, sans-serif;
		text-align: justify;
		font-size: 12px;
	}
}

.vegaburger{
    display:none;
    flex-direction:column;
    justify-content:space-between;
    width:30px;
    height:22px;
    cursor:pointer;
}

.vegaburger span{
    width:100%;
    height:3px;
    background:white;
    border-radius:2px;
    transition:0.3s;
}

header.scrolled .vegaburger span{
    background:#333;
}

@media (max-width:768px){

    .vegaburger{
        display:flex;
    }

    nav{
        display:none;
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:white;
    }

    nav.active{
        display:block;
    }

    nav ul{
        flex-direction:column;
        padding:20px;
        gap:15px;
        text-align:center;
    }

    nav a{
        color:#333;
    }
}

.vegaburger.active span:nth-child(1){
    transform:translateY(9px) rotate(45deg);
}

.vegaburger.active span:nth-child(2){
    opacity:0;
}

.vegaburger.active span:nth-child(3){
    transform:translateY(-9px) rotate(-45deg);
}

@media (max-width:768px){

    .image-divider{
        flex-direction:column;
        align-items:center;
        margin:40px auto;
        gap:20px;
    }

    .image-divider img{
        width:100%;
        height:auto;
        max-height:300px;
    }

    .section-with-overlap-top{
        padding-top:100px;
    }

    .section-with-overlap-bottom{
        padding-bottom:100px;
    }

}

@media (max-width:768px){

    .book-grid{
        grid-template-columns:1fr;
    }

}