*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#FFF9F8;
    color:#333;
    line-height:1.7;
}

.container{
    width:min(1100px,90%);
    margin:auto;
}

section{
    padding:90px 0;
}

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    text-align:center;
    background:linear-gradient(180deg,#FFF9F8,#FFF3F7);
}

.badge{
    display:inline-block;
    background:#FFE7EF;
    color:#D63384;
    padding:10px 18px;
    border-radius:999px;
    font-size:.9rem;
    font-weight:600;
    margin-bottom:25px;
}

h1{
    font-size:clamp(2.6rem,5vw,4.5rem);
    line-height:1.15;
    margin-bottom:25px;
    color:#242424;
}

.hero p{
    max-width:700px;
    margin:auto;
    font-size:1.1rem;
    color:#555;
}

.cta{
    display:inline-block;
    margin-top:40px;
    background:#EC4899;
    color:white;
    padding:18px 42px;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
    box-shadow:0 15px 30px rgba(236,72,153,.25);
}

.cta:hover{
    transform:translateY(-3px);
    background:#db2777;
}

.small{
    margin-top:18px;
    color:#777;
    font-size:.95rem;
}

.location{
    margin-top:35px;
    font-weight:600;
    color:#555;
}

.title{
    text-align:center;
    font-size:2.3rem;
    margin-bottom:20px;
}

.subtitle{
    text-align:center;
    max-width:700px;
    margin:auto;
    color:#666;
    margin-bottom:60px;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    gap:25px;
}

.card{
    background:white;
    padding:30px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s;
}

.card:hover{
    transform:translateY(-6px);
}

.card h3{
    margin-bottom:10px;
}

.activities{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-top:50px;
}

.activity-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.3s ease;
}

.activity-card:hover{
    transform:translateY(-8px);
}

.activity-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.activity-card h3{
    padding:20px;
    text-align:center;
    font-size:1.2rem;
    font-weight:600;
    color:#333;
}

.checklist{
    max-width:750px;
    margin:auto;
    display:grid;
    gap:18px;
    font-size:1.05rem;
}

.check{
    background:white;
    padding:18px 25px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.final{
    text-align:center;
    background:#FFEFF6;
}

footer{
    padding:35px;
    text-align:center;
    color:#777;
    font-size:.95rem;
}

.highlight{
    color:#EC4899;
    font-weight:600;
}

@media (max-width:700px){

    section{
        padding:70px 0;
    }

    .hero{
        padding:80px 0;
        min-height:auto;
    }

}

/* Remove default spacing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fixed Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: white;

    display: flex;
    align-items: center;

    padding: 0 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

    z-index: 1000;
}

/* Logo and Title */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-container img {
    border-radius: 50%; /* Optional */
}

.logo-container h2 {
    font-size: 40px;
    color: #800f2f;
    font-family: Georgia, serif;
}

/* Prevent content from hiding behind navbar */
.content {
    margin-top: 90px;
    padding: 20px;
}