body{
    margin:0;
    font-family:'Poppins',sans-serif;
    background:#fff7e6;
    color:#222;
}

.td-homepage{
    overflow:hidden;
}

.td-topbar{
    background:#7a0c0c;
    color:#fff;
    padding:10px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.td-top-right{
    display:flex;
    gap:15px;
    align-items:center;
}

.td-top-right button{
    background:#d4af37;
    border:none;
    padding:8px 14px;
    border-radius:8px;
    cursor:pointer;
}

.td-header{
    position:sticky;
    top:0;
    z-index:999;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 40px;
    background:rgba(255,255,255,0.85);
    backdrop-filter:blur(10px);
}

.td-logo{
    font-size:32px;
    font-family:'Cinzel',serif;
    color:#7a0c0c;
    font-weight:bold;
}

.td-nav{
    display:flex;
    gap:25px;
}

.td-nav a{
    text-decoration:none;
    color:#222;
    font-weight:500;
}

.td-hero{
    height:90vh;
    background:url('https://images.unsplash.com/photo-1470071459604-3b5ec3a7fe05?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.td-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.5);
}

.td-hero-content{
    position:relative;
    z-index:2;
    color:white;
    max-width:900px;
    padding:20px;
}

.td-hero-content h1{
    font-size:64px;
    font-family:'Cinzel',serif;
}

.td-buttons{
    margin-top:30px;
    display:flex;
    gap:20px;
    justify-content:center;
}

.td-btn-primary,
.td-btn-secondary{
    padding:15px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:bold;
}

.td-btn-primary{
    background:#d4af37;
    color:#000;
}

.td-btn-secondary{
    background:white;
    color:#7a0c0c;
}

.td-search-box{
    background:white;
    margin:-50px auto 60px;
    position:relative;
    z-index:10;
    max-width:1200px;
    padding:30px;
    border-radius:25px;
    box-shadow:0 10px 40px rgba(0,0,0,0.1);
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
}

.td-search-box input,
.td-search-box select,
.td-search-box button{
    padding:16px;
    border-radius:14px;
    border:1px solid #ddd;
}

.td-search-box button{
    background:#7a0c0c;
    color:white;
    border:none;
}

.td-section{
    padding:80px 40px;
}

.td-section h2{
    text-align:center;
    font-size:42px;
    margin-bottom:50px;
    color:#7a0c0c;
    font-family:'Cinzel',serif;
}

.td-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.td-card{
    background:white;
    border-radius:25px;
    overflow:hidden;
    transition:0.4s;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.td-card:hover{
    transform:translateY(-10px);
}

.td-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.td-card-content{
    padding:25px;
}

.td-meta{
    display:flex;
    justify-content:space-between;
    margin:20px 0;
}

.td-card-btn{
    background:#d4af37;
    padding:12px 20px;
    border-radius:12px;
    text-decoration:none;
    color:black;
    display:inline-block;
}

.td-festival-card{
    background:linear-gradient(135deg,#7a0c0c,#d4af37);
    color:white;
    padding:40px;
    border-radius:25px;
    text-align:center;
}

.td-services{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.td-service{
    background:white;
    padding:40px;
    border-radius:20px;
    text-align:center;
    font-size:22px;
    font-weight:600;
}

.td-newsletter{
    background:linear-gradient(135deg,#7a0c0c,#d4af37);
    color:white;
    padding:80px 20px;
    text-align:center;
}

.td-newsletter-form{
    margin-top:30px;
    display:flex;
    justify-content:center;
    gap:15px;
}

.td-newsletter-form input{
    width:320px;
    padding:15px;
    border:none;
    border-radius:12px;
}

.td-newsletter-form button{
    padding:15px 25px;
    border:none;
    border-radius:12px;
    background:white;
    font-weight:bold;
}

.td-footer{
    background:#4d0505;
    color:white;
    padding:60px 40px;
}

.td-footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

@media(max-width:768px){

    .td-nav{
        display:none;
    }

    .td-hero-content h1{
        font-size:38px;
    }

    .td-search-box{
        grid-template-columns:1fr;
    }

    .td-buttons{
        flex-direction:column;
    }

    .td-newsletter-form{
        flex-direction:column;
    }

}