/* Other section styles */
.other-section {
    width: 100%;
    background: rgba(255,255,255,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 10vh;
    margin: 0;
    padding: 1.5rem 0 0.5rem 0;
}
.other-text {
    font-size: 1.4rem;
    color: #1e5e46;
    font-weight: 600;
    text-align: center;
}
@media (max-width: 600px) {
    .other-text {
        font-size: 1.1rem;
    }
}
/* Masa section styles */
.masa-section {
    width: 100%;
    min-height: 20vh;
    background: rgba(0, 0, 0, 0.57);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 2rem 3vw 2rem 3vw;
    box-sizing: border-box;
}
.masa-text {
    font-size: 1.3rem;
    color: #fff;
    font-style: italic;
    text-align: right;
    margin-bottom: 0.7rem;
    font-weight: 500;
    text-shadow: 1px 1px 6px #fffdf0;
}
.digital-clock {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.5rem;
    color: #fffb00;
    background: rgba(44,62,80,0.12);
    padding: 0.5rem 1.2rem;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    text-align: right;
    min-width: 180px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
@media (max-width: 600px) {
    .masa-section {
        padding: 1.2rem 4vw 7rem 4vw;
    }
    .masa-text {
        font-size: 1rem;
    }
    .digital-clock {
        font-size: 1.1rem;
        min-width: 120px;
        padding: 0.3rem 0.7rem;
    }
}
.myquran-highlight {
    color: #297959;
    text-shadow: 2px 2px 6px #fffdf0;
    font-size: 1.6rem;
    font-weight: bold;
}
.welcome-subtext {
    color: #fff;
    font-size: 1.2rem;
    font-style: italic;
    text-align: center;
    margin-top: 1rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    background: rgba(44,62,80,0.18);
    padding: 0.5rem 1.5rem;
    border-radius: 12px;
    pointer-events: auto;
}
@media (max-width: 600px) {
    .welcome-subtext {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }
}
/* Footer styles */
.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    background: #000;
    color: #00ffad;
    font-size: 1rem;
    padding: 0.5rem 0;
    z-index: 10;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.05);
}
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Segoe UI', Arial, sans-serif;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(20, 40, 33, 0.45);
    z-index: 1;
}
.navbar {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    background: rgba(255,255,255,0.85);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.navbar-content {
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}
.navbar-title {
    font-size: 1.5rem;
    
    color: #2d4739;
}
.navbar-header {
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    background: #0f8e65;
    transition: background 0.2s;
}
.navbar-header:hover {
    background: #586d59;
    color:#fffb00;
}
.center-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    pointer-events: none;
}
.welcome-text {
    color: #9ef438;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 2px 16px rgba(0,0,0,0.5);
    background: rgba(44,62,80,0.25);
    padding: 1rem 2.5rem;
    border-radius: 16px;
    pointer-events: auto;
}
@media (max-width: 600px) {
    .navbar {
        padding: 0.7rem 1rem;
    }
    .navbar-title {
        font-size: 1.1rem;
    }
    .welcome-text {
        font-size: 1.5rem;
        padding: 0.7rem 1.2rem;
    }
}
