* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2d5f4d;
    --primary-light: #4a8b6f;
    --primary-dark: #1a3d2e;
    --accent: #b87333;
    --accent-light: #cd853f;
    --gold: #D4AF37;
    --gold-light: #F4E5C2;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --cream: #FFF8F0;
    --dark: #1a1a1a;
    --gray: #999;
    --light-gray: #f4f4f4;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    color: var(--dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle, #FFFFFF 0%, #FAFAFA 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOut 0.8s ease 4.5s forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.loading-logo {
    width: 220px;
    height: auto;
    margin-bottom: 40px;
    animation: fadeInScale 1s ease;
    filter: drop-shadow(0 4px 20px rgba(184, 115, 51, 0.3));
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.loading-ayat {
    text-align: center;
    max-width: 600px;
    padding: 0 20px;
    animation: fadeInUp 1s ease 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ayat-arabic {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.8;
}

.ayat-translation {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 10px;
    font-style: italic;
}

.ayat-reference {
    font-size: 14px;
    color: var(--accent);
    font-weight: 600;
}

.loading-dots {
    display: flex;
    gap: 8px;
    margin-top: 30px;
}

.loading-dots span {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

/* Prayer Widget */
.prayer-widget {
    position: fixed;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 160px;
    background: var(--primary);
    border: 2px solid var(--accent);
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(184, 115, 51, 0.25);
    z-index: 900;
    transition: all 0.3s ease;
}

.prayer-widget.collapsed {
    width: 35px;
    height: 120px;
    border-radius: 15px 0 0 15px;
    right: 0;
}

.prayer-widget.collapsed .prayer-content {
    display: none;
}

.prayer-widget.collapsed .prayer-header {
    border-radius: 15px 0 0 15px;
    padding: 10px 5px;
    border-bottom: none;
    height: 100%;
    writing-mode: vertical-rl;
}

.prayer-widget.collapsed .prayer-title {
    font-size: 10px;
    letter-spacing: 2px;
}

.prayer-widget.collapsed .prayer-toggle {
    display: none;
}

.prayer-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 8px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--accent);
    border-radius: 4px 4px 0 0;
    cursor: pointer;
}

.prayer-title {
    font-family: 'Playfair Display', serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.5px;
}

.prayer-toggle {
    background: none;
    border: none;
    color: var(--accent);
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.prayer-toggle:hover {
    transform: scale(1.1);
}

.prayer-content {
    padding: 8px;
}

.prayer-location {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    color: #f5f5f5;
    text-align: center;
    margin-bottom: 3px;
    opacity: 0.9;
}

.prayer-hijri {
    font-family: 'Inter', sans-serif;
    font-size: 8px;
    color: var(--accent);
    text-align: center;
    margin-bottom: 8px;
    font-weight: 500;
}

.prayer-times {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.prayer-time {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.prayer-time.next-prayer {
    background: rgba(184, 115, 51, 0.2);
    border-left: 2px solid var(--accent);
}

.prayer-time.next-prayer .prayer-name,
.prayer-time.next-prayer .prayer-hour {
    color: var(--accent);
    font-weight: 600;
    font-size: 10px;
}

.prayer-name {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    color: #f5f5f5;
    font-weight: 400;
}

.prayer-hour {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    color: #f5f5f5;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 248, 240, 0.98) 100%);
    backdrop-filter: blur(20px);
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(45, 95, 77, 0.08),
                0 1px 3px rgba(212, 175, 55, 0.1);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.3) 20%, 
        rgba(184, 115, 51, 0.5) 50%, 
        rgba(212, 175, 55, 0.3) 80%, 
        transparent 100%) 1;
}

#navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.5) 50%, 
        transparent 100%);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: relative;
}

.nav-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.2) 50%, 
        transparent 100%);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    padding: 8px 20px 8px 8px;
    border-radius: 50px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.5) 0%, 
        rgba(255, 248, 240, 0.3) 100%);
    box-shadow: 0 4px 15px rgba(45, 95, 77, 0.08);
    transition: all 0.3s ease;
}

.nav-brand::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1px;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.3) 0%, 
        rgba(184, 115, 51, 0.2) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-brand:hover::before {
    opacity: 1;
}

.nav-brand:hover {
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.15);
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 65px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(45, 95, 77, 0.25));
    transition: all 0.3s ease;
}

.nav-brand:hover .nav-logo img {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 16px rgba(212, 175, 55, 0.3));
}

.nav-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.3;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(45, 95, 77, 0.1);
    position: relative;
}

.nav-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--accent) 100%);
    transition: width 0.3s ease;
}

.nav-brand:hover .nav-title::after {
    width: 100%;
}

.nav-title-short {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.1) 0%, 
        rgba(184, 115, 51, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    opacity: 1;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 16px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--accent) 100%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: calc(100% - 32px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-full {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: 80px;
}

.hero-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 95, 77, 0.4) 0%, rgba(26, 26, 26, 0.3) 100%);
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    color: var(--white);
    animation: scrollBounce 2s infinite;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 2;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Intro Section */
.intro-section {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(180deg, 
        var(--off-white) 0%, 
        var(--cream) 50%, 
        var(--white) 100%);
    position: relative;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, 
        rgba(212, 175, 55, 0.03) 0%, 
        transparent 70%);
    pointer-events: none;
}

.ayat-quran-box {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8F0 100%);
    border: 3px solid transparent;
    background-image: linear-gradient(135deg, #FFFFFF 0%, #FFF8F0 100%), 
                      linear-gradient(135deg, var(--accent) 0%, var(--gold) 50%, var(--accent) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 20px;
    padding: 60px;
    max-width: 850px;
    margin: 0 auto 40px;
    box-shadow: 0 15px 50px rgba(184, 115, 51, 0.2),
                0 5px 15px rgba(212, 175, 55, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.ayat-quran-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 50%, var(--accent) 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ayat-quran-box:hover::before {
    opacity: 0.3;
}

.ayat-quran-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(184, 115, 51, 0.3),
                0 10px 25px rgba(212, 175, 55, 0.2);
}

.ayat-quran-box .ayat-arabic {
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.9;
    text-shadow: 0 2px 8px rgba(45, 95, 77, 0.1);
}

.ayat-quran-box .ayat-translation {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 15px;
}

.ayat-quran-box .ayat-reference {
    font-size: 15px;
    color: var(--accent);
}

.divider-bronze {
    width: 140px;
    height: 5px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--accent) 20%, 
        var(--gold) 50%, 
        var(--accent) 80%, 
        transparent 100%);
    margin: 50px auto;
    border-radius: 3px;
    box-shadow: 0 3px 15px rgba(184, 115, 51, 0.4);
    position: relative;
}

.divider-bronze::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(45, 95, 77, 0.1);
}

.intro-text {
    font-size: 18px;
    color: var(--dark);
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.intro-cta {
    font-size: 22px;
    color: var(--accent);
    font-weight: 600;
    margin-top: 30px;
    text-shadow: 0 2px 8px rgba(184, 115, 51, 0.2);
    letter-spacing: 0.3px;
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: var(--white);
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    color: var(--primary);
    text-align: center;
    margin-bottom: 80px;
    font-weight: 700;
    position: relative;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(45, 95, 77, 0.1);
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--gold) 50%, var(--accent) 100%);
    border-radius: 3px;
    box-shadow: 0 3px 15px rgba(212, 175, 55, 0.5);
}

.section-heading::before {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.about-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8F0 100%);
    padding: 50px;
    border-radius: 20px;
    border-left: 5px solid var(--accent);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08),
                0 3px 12px rgba(184, 115, 51, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-card:hover::before {
    opacity: 1;
}

.about-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(184, 115, 51, 0.25),
                0 8px 20px rgba(212, 175, 55, 0.15);
    border-left-color: var(--gold);
}

.about-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.about-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
    border-radius: 2px;
}

.about-card p {
    margin-bottom: 15px;
    color: var(--dark);
}

.about-card ul {
    margin-left: 20px;
    color: var(--dark);
}

.about-card ul li {
    margin-bottom: 8px;
}

/* Gallery Section */
.gallery-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover {
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4),
                0 8px 25px rgba(184, 115, 51, 0.2);
    transform: translateY(-8px) scale(1.02);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.video-item {
    grid-column: span 2;
}

.video-item::before {
    display: none;
}

.video-item video {
    width: 100%;
    height: auto;
    max-height: 600px;
    background: #000;
    display: block;
    position: relative;
    z-index: 2;
    -webkit-appearance: none;
}

.video-item video::-webkit-media-controls-volume-slider,
.video-item video::-webkit-media-controls-mute-button {
    display: none;
}

.video-item video::-webkit-media-controls-panel {
    background: rgba(0,0,0,0.8);
}

/* Live Section */
.live-section {
    padding: 120px 0;
    background: var(--white);
}

.live-placeholder {
    max-width: 800px;
    margin: 0 auto;
}

.live-video-container {
    max-width: 900px;
    margin: 0 auto;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.live-video-container iframe {
    width: 100%;
    height: 450px;
    display: block;
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 30px;
}

.contact-address,
.contact-phone,
.contact-social {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.contact-social a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.contact-social a:hover {
    color: var(--gold);
    text-decoration: none;
}

.contact-social a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--gold) 100%);
    transition: width 0.3s ease;
}

.contact-social a:hover::after {
    width: 100%;
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 40px 0;
    text-align: center;
}

.footer-divider {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--gold) 100%);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.footer-copyright {
    color: var(--white);
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-social a {
    color: var(--accent);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--gold);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 15px 20px;
    }

    .nav-brand {
        gap: 10px;
        padding: 6px 15px 6px 6px;
    }

    .nav-logo img {
        height: 50px;
    }

    .nav-title {
        font-size: 14px;
    }

    .nav-title-full {
        display: none;
    }

    .nav-title-short {
        display: inline;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 998;
    }

    .nav-menu.active {
        right: 0;
    }

    .prayer-widget {
        right: 5px;
        width: 130px;
        top: 45%;
        transform: translateY(-50%);
        z-index: 800;
    }
    
    .prayer-widget.collapsed {
        width: 28px;
        height: 100px;
        right: 0;
    }
    
    .prayer-widget.collapsed .prayer-content {
        display: none;
    }
    
    .prayer-widget.collapsed .prayer-header {
        border-radius: 15px 0 0 15px;
        padding: 10px 5px;
        border-bottom: none;
        height: 100%;
        writing-mode: vertical-rl;
    }
    
    .prayer-widget.collapsed .prayer-title {
        font-size: 8px;
        letter-spacing: 1.5px;
    }
    
    .prayer-widget.collapsed .prayer-toggle {
        display: none;
    }
    
    .prayer-header {
        padding: 6px 8px;
    }
    
    .prayer-title {
        font-size: 10px;
    }
    
    .prayer-content {
        padding: 6px;
    }
    
    .prayer-time {
        padding: 3px 5px;
    }
    
    .prayer-name,
    .prayer-hour {
        font-size: 8px;
    }
    
    .prayer-time.next-prayer .prayer-name,
    .prayer-time.next-prayer .prayer-hour {
        font-size: 9px;
    }
    
    .prayer-location {
        font-size: 8px;
    }
    
    .prayer-hijri {
        font-size: 7px;
        margin-bottom: 6px;
    }

    .hero-full {
        height: 60vh;
        margin-top: 70px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-heading {
        font-size: 32px;
    }

    .intro-text {
        font-size: 16px;
    }

    .intro-cta {
        font-size: 18px;
    }

    .ayat-quran-box {
        padding: 30px 20px;
    }

    .ayat-quran-box .ayat-arabic {
        font-size: 20px;
    }

    .ayat-quran-box .ayat-translation {
        font-size: 15px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-card {
        padding: 30px 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-item {
        grid-column: span 1;
    }

    .live-placeholder {
        padding: 60px 20px;
    }

    .live-placeholder-title {
        font-size: 24px;
    }

    .live-placeholder-subtitle {
        font-size: 18px;
    }

    .intro-section,
    .about-section,
    .gallery-section,
    .live-section,
    .contact-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .nav-logo img {
        height: 45px;
    }

    .nav-title {
        font-size: 11px;
    }
    
    .nav-brand {
        padding: 4px 10px 4px 4px;
    }
    
    .nav-container {
        padding: 12px 15px;
    }

    .prayer-widget {
        width: 120px;
        right: 0;
    }
    
    .prayer-widget.collapsed {
        width: 25px;
        height: 90px;
    }
    
    .prayer-widget.collapsed .prayer-title {
        font-size: 7px;
    }
}
