:root {
    /* Color Palette */
    --primary-gold: #D4AF37;
    --primary-navy: #1a252f; /* Dark charcoal/navy */
    --accent-cream: #F5F5F0;
    --accent-rose-gold: #E6C2BF;
    --text-light: #F5F5F0;
    --text-muted: #d0d0d0;
    
    /* Typography */
    --font-english: 'Playfair Display', serif;
    --font-arabic: 'Amiri', serif;
}

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

body {
    background-color: var(--primary-navy);
    color: var(--text-light);
    font-family: var(--font-arabic);
    line-height: 1.8;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    overflow-x: hidden;
}

.container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    opacity: 0; /* Hidden initially for fade-in */
    transition: opacity 1.5s ease-in-out;
}

.fade-in.visible {
    opacity: 1;
}

/* Header & Logo */
.logo-section {
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.logo-symbol {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.project-name {
    font-family: var(--font-english);
    font-size: 2.5rem;
    color: var(--primary-gold);
    letter-spacing: 2px;
    font-weight: 400;
    border-bottom: 1px solid transparent;
    display: inline-block;
    padding-bottom: 0.5rem;
    transition: border-color 0.3s ease;
}

.project-name:hover {
    border-color: var(--primary-gold);
}

/* About Section */
.about-section {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
}

.intro-text, .history-text, .closing-text {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: var(--accent-cream);
}

.features-list {
    margin: 2rem 0;
    text-align: center;
    color: var(--primary-gold);
}

.features-list p {
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.features-list ul {
    list-style: none;
    padding: 0;
}

.features-list li {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.features-list li:hover {
    color: var(--primary-gold);
}

.signature {
    margin-top: 2rem;
    font-size: 1.4rem;
    color: var(--primary-gold);
    font-style: italic;
}

/* Footer */
.site-footer {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-muted);
    font-family: var(--font-english);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 600px) {
    .project-name {
        font-size: 1.8rem;
    }
    
    .about-section {
        padding: 1.5rem;
    }
    
    .intro-text, .history-text, .closing-text {
        font-size: 1.1rem;
    }
}