* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Times New Roman', serif;
    background: linear-gradient(135deg, #fff8e7 0%, #ffe4c4 50%, #ffd700 100%);
    color: #8b0000;
    line-height: 1.6;
}


.main-wrapper {
    padding: 20px;
}

.container {
    max-width: 1000px;
    margin: auto;
}


.header {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(to bottom, #c41e3a, #8b0000);
    border-radius: 15px;
    margin-bottom: 30px;
    border: 4px solid #ffd700;
    position: relative;
}

.header::before,
.header::after {
    content: "🏮";
    font-size: 40px;
    position: absolute;
    top: 10px;
}

.header::before { left: 20px; }
.header::after { right: 20px; }

.header h1 {
    font-size: 32px;
    color: #ffd700;
}

.header p {
    color: #fff8e7;
}

.decorative-line {
    text-align: center;
    font-size: 24px;
    margin: 20px 0;
}

.festival-card {
    background: #fffaf0;
    border: 1px solid #c41e3a;
    border-radius: 11px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(139,0,0,0.2);
    transition: 0.3s;
}

.festival-card:hover {
    transform: translateY(-5px);
}


.festival-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.festival-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}


.footer {
    text-align: center;
    padding: 20px;
    background: linear-gradient(to top, #c41e3a, #8b0000);
    border-radius: 15px;
    margin-top: 30px;
    border: 4px solid #ffd700;
}

.footer p {
    color: #ffd700;
}

.header1 {
    background: #c62828;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo1 {
    color: gold;
    font-size: 22px;
    font-weight: bold;
}

.menu-icon1 {
    width: 30px;
    cursor: pointer;
}

.menu-icon1 span {
    display: block;
    height: 4px;
    background: white;
    margin: 5px 0;
}

.side-menu {
    position: fixed;
    top: 60px;
    right: -250px;
    width: 250px;
    height: 100%;
    background: #b71c1c;
    transition: 0.4s;
    padding-top: 20px;
    z-index: 9999; /* menu sẽ nằm trên cùng */
}

.side-menu a {
    display: block;
    padding: 15px 25px;
    color: white;
    text-decoration: none;
}

.side-menu a:hover {
    background: #8e0000;
}


