@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #0a0a0a;
    overflow-x: hidden;
}

/* STARS BACKGROUND */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* CONTAINER */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* HEADER */
header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(218, 165, 32, 0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo a {
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 50%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.logo-icon {
    font-size: 28px;
    filter: drop-shadow(0 0 10px rgba(218, 165, 32, 0.5));
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #DAA520;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #DAA520, #FFD700);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* HERO SECTION */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 100px 20px;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.15) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-icon {
    font-size: 80px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 30px rgba(218, 165, 32, 0.6));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 50%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    color: #c0c0c0;
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.8;
}

/* CTA BUTTON */
.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
    color: #0a0a0a;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.4s;
    box-shadow: 0 10px 40px rgba(218, 165, 32, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(218, 165, 32, 0.5);
}

/* SECTIONS */
.section {
    padding: 120px 20px;
    position: relative;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: #888;
    font-size: 18px;
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-cta {
    text-align: center;
    margin-top: 60px;
}

/* CONTENT GRID */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.content-card {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(218, 165, 32, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #DAA520, #FFD700, #FFA500);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.content-card:hover::before {
    transform: scaleX(1);
}

.content-card:hover {
    transform: translateY(-10px);
    border-color: rgba(218, 165, 32, 0.5);
    box-shadow: 0 20px 60px rgba(218, 165, 32, 0.2);
}

.card-icon {
    font-size: 60px;
    text-align: center;
    padding: 40px 0 20px;
    filter: drop-shadow(0 0 10px rgba(218, 165, 32, 0.3));
}

.card-content {
    padding: 0 35px 35px;
}

.card-category {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(218, 165, 32, 0.1);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: #DAA520;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.3;
}

.card-text {
    color: #b0b0b0;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #666;
    padding-top: 15px;
    border-top: 1px solid rgba(218, 165, 32, 0.1);
}

/* ISLAMIC EVENT BANNER */
.islamic-event-banner {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.3) 0%, rgba(218, 165, 32, 0.3) 100%);
    border: 2px solid rgba(218, 165, 32, 0.5);
    border-radius: 20px;
    padding: 60px 40px;
    margin: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.islamic-event-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.event-content {
    position: relative;
    z-index: 2;
}

.event-icon {
    font-size: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(218, 165, 32, 0.5));
}

.event-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #FFD700;
    margin-bottom: 15px;
}

.event-description {
    color: #e0e0e0;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.event-date {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(218, 165, 32, 0.2);
    border-radius: 30px;
    color: #DAA520;
    font-weight: 600;
    font-size: 16px;
    margin-top: 10px;
}

/* QUOTE SECTION */
.quote-section {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    margin: 80px 0;
}

.quote-icon {
    font-size: 80px;
    opacity: 0.2;
    margin-bottom: 30px;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto 25px;
    line-height: 1.6;
    font-style: italic;
}

.quote-author {
    color: #DAA520;
    font-size: 18px;
    font-weight: 500;
}

/* REMINDERS GRID */
.reminders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.reminder-card {
    background: rgba(218, 165, 32, 0.05);
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.reminder-card:hover {
    background: rgba(218, 165, 32, 0.1);
    transform: scale(1.05);
}

.reminder-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.reminder-text {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.6;
}

/* PAGE HEADER */
.page-header {
    padding: 120px 20px 60px;
    text-align: center;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.page-header p {
    color: #888;
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

/* BLOG LIST */
.blog-list {
    padding: 40px 20px 120px;
}

.blog-post-card {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 40px;
    transition: all 0.4s;
}

.blog-post-card:hover {
    border-color: rgba(218, 165, 32, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(218, 165, 32, 0.2);
}

.blog-post-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.blog-post-icon {
    font-size: 50px;
}

.blog-post-meta-group {
    flex: 1;
}

.blog-post-date {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.blog-post-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-post-excerpt {
    color: #b0b0b0;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.blog-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid rgba(218, 165, 32, 0.1);
}

.tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    padding: 6px 16px;
    background: rgba(218, 165, 32, 0.1);
    border-radius: 20px;
    font-size: 12px;
    color: #DAA520;
    font-weight: 600;
}

/* FOOTER */
footer {
    background: rgba(10, 10, 10, 0.95);
    padding: 80px 20px 40px;
    border-top: 1px solid rgba(218, 165, 32, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
    color: #DAA520;
    font-size: 22px;
}

.footer-section p {
    color: #888;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #888;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #DAA520;
}

.copyright {
    padding-top: 40px;
    border-top: 1px solid rgba(218, 165, 32, 0.1);
    text-align: center;
    color: #666;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .nav-links {
        gap: 20px;
        font-size: 13px;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 36px;
    }

    .quote-text {
        font-size: 24px;
    }

    .blog-post-card {
        padding: 30px;
    }

    .blog-post-title {
        font-size: 24px;
    }

    .event-title {
        font-size: 32px;
    }

    .page-header h1 {
        font-size: 38px;
    }
}