/* General Reset & Soft Color Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Pyidaungsu", "Myanmar Text", sans-serif;
}

body {
    background-color: #fcfbfa; /* အလွန်ဖျော့သော နို့နှစ်ရောင် နောက်ခံ */
    color: #4a403b;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(184, 150, 122, 0.08);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #e3d5c8;
}

.logo-area h1 {
    font-size: 18px;
    color: #5c4d44;
    line-height: 1.2;
}

.subtitle {
    font-size: 12px;
    color: #8c7b70;
}

.contact-info p {
    font-size: 14px;
    font-weight: bold;
    color: #b08d71; /* ဖျော့တော့သော ရွှေဝါ/ကာရာမယ်ရောင် */
    background: #f7f3ef;
    padding: 6px 12px;
    border-radius: 20px;
}

/* Slideshow Styles */
.slideshow-container {
    max-width: 650px;
    position: relative;
    margin: 30px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(184, 150, 122, 0.1);
    background-color: #ffffff;
    border: 1px solid #f0eae1;
    height: 380px;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    color: #5c4d44;
    text-align: center;
    padding: 12px;
    font-size: 15px;
    font-weight: bold;
    border-top: 1px solid #f0eae1;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from { opacity: .4; } 
    to { opacity: 1; }
}

/* Menu Grid Section */
.menu-section {
    padding: 30px 0 50px 0;
}

.menu-section h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #5c4d44;
    font-size: 22px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.menu-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(184, 150, 122, 0.05);
    border: 1px solid #f2ece4;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
}

.menu-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(184, 150, 122, 0.12);
}

.menu-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.menu-card p {
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #5c4d44;
}

/* Footer Styles */
.main-footer {
    background-color: #f4eee9; /* နို့နှစ်ရောင်ဖျော့ဖျော့ ဖုတ္တာ */
    color: #5c4d44;
    padding: 40px 0 20px 0;
    border-top: 1px solid #e8decf;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-box {
    flex: 1;
    min-width: 250px;
}

.footer-box h3 {
    margin-bottom: 12px;
    font-size: 16px;
    color: #735d51;
}

.footer-box p, .footer-box li {
    font-size: 14px;
    margin-bottom: 8px;
    color: #786a60;
}

.social-links {
    list-style: none;
}

.social-links a {
    color: #8c7b70;
    text-decoration: none;
    transition: color 0.2s;
}

.social-links a:hover {
    color: #b08d71;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #e8decf;
    padding-top: 15px;
    font-size: 13px;
    color: #9c8e83;
}

/* Responsive Design */
@media (max-width: 768px) {
    .slideshow-container {
        height: 300px;
    }
    .slide img {
        height: 240px;
    }
    .header-flex {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .logo-area {
        justify-content: center;
    }
}