body {
    background: linear-gradient(135deg, #1e2a38, #2c3e50);
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Header */
.header {
    background: rgba(0,0,0,0.4);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Sidebar Menu Links */
.offcanvas-body ul li a {
    text-decoration: none;   /* Remove underline */
    color: #fff;             /* White text */
    font-weight: 500;        /* Slightly bolder */
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Hover effect */
.offcanvas-body ul li a:hover {
    background: rgba(241, 196, 15, 0.2); /* soft gold highlight */
    color: #f1c40f;                       /* gold text on hover */
    text-decoration: none;                 /* make sure underline is gone */
}

/* Icons spacing */
.offcanvas-body ul li a i {
    margin-right: 10px;
}

.offcanvas-body ul li a.active {
    background: rgba(241, 196, 15, 0.3); /* gold highlight */
    color: #f1c40f !important;           /* gold text */
    font-weight: bold;
}

.map-responsive {
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/* Masjid Info */
.masjid-info {
    text-align: center;
    margin: 20px 0;
}

.masjid-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.masjid-address {
    font-size: 1rem;
    opacity: 0.8;
}

/* Clock Container */
.clock-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

/* Clock */
.clock {
    width: 320px;
    height: 320px;
    border: 10px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    position: relative;
    background: radial-gradient(circle, rgba(255,255,255,0.05), rgba(0,0,0,0.25));
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

/* Center */
.clock-center {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #e67e22;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

/* Numbers */
.clock-number {
    position: absolute;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    color: #fff;
}

/* Hands */
.clock-hand {
    position: absolute;
    transform-origin: bottom center;
    left: 50%;
    bottom: 50%;
    transition: transform 0.05s linear;
    border-radius: 2px;
}

.hour-hand {
    width: 5px;
    height: 70px;
    margin-left: -2.5px;
    background: rgba(255,255,255,0.9);
}

.minute-hand {
    width: 4px;
    height: 90px;
    margin-left: -2px;
    background: rgba(255,255,255,0.8);
}

.second-hand {
    width: 2px;
    height: 100px;
    margin-left: -1px;
    background: #e74c3c;
}

.prayer-hand {
    position: absolute;
    width: 4px;
    height: 100px;
    margin-left: -2px;
    background: #f1c40f; /* gold */
    transform-origin: bottom center;
    left: 50%;
    bottom: 50%;
    border-radius: 2px;
    box-shadow: 0 0 10px #f1c40f;
    transition: transform 0.5s linear;
    z-index: 5;
}

.prayer-hand-label {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #f1c40f;
    color: #000;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
}

/* Prayer Indicator */
.prayer-indicator {
    position: absolute;
    width: 90px;
    height: 28px;
    background: #f1c40f;
    color: #2c3e50;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
    transform: translate(-50%, -50%);
    box-shadow: 0 3px 12px rgba(241, 196, 15, 0.5);
}

/* Digital Time */
.time-display {
    text-align: center;
    margin: 25px 0;
}

.current-time {
    font-size: 2.8rem;
    font-weight: 700;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

/* Date Info */
.date-info {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    backdrop-filter: blur(10px);
}

.date-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.date-row:last-child {
    margin-bottom: 0;
}

/* Prayer Times Grid */
.prayer-times-grid {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.prayer-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    margin: 8px 0;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.05);
}

.prayer-item.active {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(241,196,15,0.4);
}

.prayer-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.prayer-time {
    font-size: 1.1rem;
}

/* Custom bullet points for facilities list */
.card .list-group {
    list-style: none; /* remove default bullets */
    padding-left: 0;
}

.card .list-group-item {
    position: relative;
    padding-left: 25px; /* space for bullet */
    margin-bottom: 8px;
    background: transparent;
    border: none;
    color: #fff;
}

/* Add custom bullet using ::before */
.card .list-group-item::before {
    content: "\2022"; /* Unicode bullet */
    position: absolute;
    left: 0;
    color: #f1c40f; /* gold color for bullet */
    font-size: 1.2em;
    line-height: 1;
}



/* Responsive */
@media (max-width: 768px) {
    .clock {
        width: 260px;
        height: 260px;
    }

    .masjid-name {
        font-size: 1.6rem;
    }

    .current-time {
        font-size: 2rem;
    }

    .prayer-indicator {
        width: 70px;
        height: 24px;
        font-size: 12px;
    }
}
