body {
    font-family: Arial, sans-serif;
    background-color: #fef7ed;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1000px;
    margin: auto;
    padding: 40px 20px;
    background-color: #fef7ed;
    position: relative;
    overflow: hidden;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.header-links {
    font-size: 14px;
    color: #c94058;
    margin-top: 10px;
    text-align: right;
    background-color: #fef7ed;
}

.header-links a {
    color: #c94058;
    text-decoration: none;
    margin-left: 10px;
}

.logo-title {
    font-weight: bold;
}

.logo {
    font-size: 32px;
    font-weight: bold;
}
.logo img {
    width: 200px;
    height: auto;
}
.logo span {
    color: red;
}

.subtitle {
    font-size: 40px;
    font-family: 'Linotype Feltpen', sans-serif;
    color: #ee1b3c;
    text-align: center;
    margin: 10px 0 30px;
}

.main-title {
    font-size: 36px;
    color: #cf4c54;
    text-align: right;
    font-weight: bold;
}
.tagline {
    font-size: 24px;
    color: #a9192f;
    text-align: right;
    font-weight: bold;
}



.content {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

.content strong {
    font-weight: bold;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #c94058;
    margin: 1em 0;
    padding: 0;
}


@media (max-width: 600px) {
    .header {
        flex-wrap: wrap;
    }

    .right-header {
        width: 100%;
        text-align: right;
        margin-top: 10px;

    }
}


.background-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.merlion-theme .background-elements::before {
    content: "";
    background: url('assets/imgs/Singapore-Festival-Logo-Black.png') no-repeat bottom right / contain;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 300px;
    opacity: 0.8;
}

.merlion-theme .background-elements::after {
    content: "";
    background: url('assets/imgs/Singapore-Festival-Logo-Black.png') no-repeat top left / contain;
    position: absolute;
    top: 60px;
    left: 10px;
    width: 80px;
    height: 80px;
    opacity: 0.9;
}

/* Other theme example */
.city-theme .background-elements::before {
    content: "";
    background: url('skyline.png') no-repeat bottom right / contain;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 250px;
    height: 200px;
    opacity: 0.7;
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    padding: 10px;
    color: #e52f39;
}

.header-links {
    display: flex;
    gap: 15px;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .header-links {
        display: none;
        flex-direction: column;
        background-color: white;
        position: absolute;
        top: 60px;
        right: 20px;
        border: 1px solid #ccc;
        padding: 10px;
        z-index: 1000;
    }

    .header-links.active {
        display: flex;
    }
}
