/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background-color: #FFF8E7;
    min-height: 100vh;
    line-height: 1.4;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.landing-container {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    background-color: white;
    min-height: 100vh;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Mobile-specific: Remove shadow, make full screen */
@media (max-width: 480px) {
    body {
        background-color: white;
        padding: 0;
    }
    
    .landing-container {
        box-shadow: none;
        max-width: 100%;
    }
}

/* Header Section */
.header {
    background-color: #0b5147;
    padding: 12px 20px;
    text-align: center;
    border-bottom: 6px solid #0b5147;
    flex-shrink: 0;
}

.main-title {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin: 0;
}

/* Logo Section */
.logo-section {
    background-color: #FFF8E7;
    padding: 15px 20px;
    text-align: center;
    flex-shrink: 0;
}

.bmh-logo {
    max-width: 160px;
    width: 100%;
    height: auto;
}

/* Menu Section */
.menu-section {
    background-color: white;
    padding: 15px 20px 12px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: visible;
}

.menu-title {
    color: #000;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 6px;
    text-align: left;
    margin-bottom: 0;
    padding-left: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-left: 5px solid #000;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    position: absolute;
    right: 18px;
    top: 0;
    bottom: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-right: 80px;
    padding-left: 18px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background-color: #FFFEF9;
    border: 2px solid #F0F0F0;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.menu-item:hover {
    background-color: #FFF8E7;
    border-color: #F5A623;
    transform: translateX(-5px);
    box-shadow: 0 3px 10px rgba(245, 166, 35, 0.2);
}

.menu-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #FFF8E7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #F0F0F0;
}

.menu-icon svg {
    width: 38px;
    height: 38px;
}

.menu-content {
    flex: 1;
}

.menu-heading {
    color: #34C759;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 3px;
    line-height: 1.2;
}

.menu-description {
    color: #F5A623;
    font-size: 0.62rem;
    font-weight: 500;
    line-height: 1.3;
    text-transform: uppercase;
}

/* Footer Menu Section */
.footer-menu {
    background-color: white;
    padding: 12px 18px;
    text-align: center;
    border-top: none;
    flex-shrink: 0;
}

.footer-link {
    color: #0b5147;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #F5A623;
}

.footer-separator {
    color: #0b5147;
    font-size: 0.9rem;
    margin: 0 8px;
    font-weight: 300;
}

/* About Section */
.about-section {
    background-color: #FFF8E7;
    padding: 16px 22px 20px;
    border-top: none;
    flex-shrink: 0;
    overflow: visible;
}

.about-title {
    color: #F5A623;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: left;
    line-height: 1.3;
}

.about-description {
    color: #2D5F4B;
    font-size: 0.7rem;
    line-height: 1.6;
    text-align: justify;
    font-weight: 400;
    display: block;
    word-wrap: break-word;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .header {
        padding: 10px 15px;
    }

    .logo-section {
        padding: 10px 15px;
    }

    .bmh-logo {
        max-width: 150px;
    }

    .menu-section {
        padding: 10px 15px;
        padding-bottom: 0;
        margin-bottom: 30px;
        overflow: visible;
    }

    .menu-title {
        font-size: 1rem;
        letter-spacing: 5px;
        right: 20px;
        top: 0;
        height: calc(100% - 30px);
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .menu-items {
        gap: 10px;
        padding-right: 70px;
        padding-left: 15px;
    }

    .menu-item {
        padding: 10px 15px;
        gap: 12px;
    }

    .menu-icon {
        width: 50px;
        height: 50px;
    }

    .menu-icon svg {
        width: 40px;
        height: 40px;
    }

    .menu-heading {
        font-size: 0.9rem;
    }

    .menu-description {
        font-size: 0.65rem;
    }

    .social-section {
        padding: 10px 15px;
    }

    .social-title {
        font-size: 0.85rem;
        letter-spacing: 3px;
        left: 20px;
    }

    .social-icons {
        gap: 15px;
        padding-left: 50px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .about-section {
        padding: 14px 20px 18px;
        overflow: visible;
    }

    .about-title {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .about-description {
        font-size: 0.68rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    body {
        background-color: white;
        padding: 0;
    }
    
    .landing-container {
        box-shadow: none;
        max-width: 100%;
    }
    
    .main-title {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }

    .header {
        padding: 12px 20px;
    }

    .logo-section {
        padding: 15px 20px;
    }

    .bmh-logo {
        max-width: 160px;
    }

    .menu-section {
        padding: 15px 20px 12px;
        padding-bottom: 0;
        margin-bottom: 30px;
        overflow: visible;
    }

    .menu-title {
        font-size: 1rem;
        letter-spacing: 6px;
        right: 18px;
        top: 0;
        height: calc(100% - 30px);
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .menu-items {
        gap: 12px;
        padding-right: 80px;
        padding-left: 18px;
    }

    .menu-item {
        padding: 12px 16px;
        gap: 12px;
    }

    .menu-icon {
        width: 50px;
        height: 50px;
    }

    .menu-icon svg {
        width: 38px;
        height: 38px;
    }

    .menu-heading {
        font-size: 0.9rem;
    }

    .menu-description {
        font-size: 0.62rem;
    }

    .footer-menu {
        padding: 12px 18px;
    }

    .footer-link {
        font-size: 0.9rem;
    }

    .about-section {
        padding: 16px 22px 20px;
        overflow: visible;
    }

    .about-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .about-description {
        font-size: 0.7rem;
        line-height: 1.6;
    }
}
