* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans Myanmar', sans-serif;
}

body {
    background: url("https://images.unsplash.com/photo-1519681393784-d120267933ba") 
                no-repeat center center / cover;
    background-attachment: fixed;
    min-height: 100vh;
}

.overlay {
    background: rgba(0, 0, 0, 0.75);
    min-height: 100vh;
    padding: 25px 15px;
    color: white;
}

/* ၁။ Header 3D Effect */
.header-3d {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: blue;
    padding: 20px;
    margin-bottom: 25px;
    line-height: 1.5;
    /* 3D ကြွနေအောင် Layer ပေါင်းများစွာ သုံးထားသည် */
    text-shadow: 
        0 1px 0 #b39b3c, 
        0 2px 0 #a38c35, 
        0 3px 0 #8c782d, 
        0 4px 0 #736225, 
        0 5px 0 #5c4e1d, 
        0 6px 1px rgba(0,0,0,0.1), 
        0 0 10px rgba(0,0,0,0.2), 
        0 10px 15px rgba(0,0,0,0.3);
}                                                                    

/* ၂။ စာသား Box နှင့် Stroke Effect */
.text-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 18px;
    line-height: 2.2;
    margin-bottom: 30px;
    text-align: justify;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* စာသားများကို Stroke ထည့်ခြင်း */
.text-box span {
    /* အနားသတ် အရောင်ထည့်ခြင်း */
    -webkit-text-stroke: 0.6px rgba(255, 255, 255, 0.8);
    font-weight: 700;
    font-size: 1.05em;
    letter-spacing: 0.5px;
}

.highlight-yellow { color: #ffde59; }
.highlight-pink { color: #ff9a9e; }
.highlight-cyan { color: #00f2fe; }

/* ၃။ Layout Container */
.main-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ပုံများ အပိုင်း */
.images-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.img-box {
    width: 100%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.img-box img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* ခလုတ်များ အပိုင်း */
.menu-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.menu-list a {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #222;
    text-decoration: none;
    padding: 14px;
    text-align: center;
    border-radius: 10px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}

.menu-list a:active {
    transform: scale(0.98);
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 15px;
    opacity: 0.8;
}
