/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    background: linear-gradient(135deg, #f0e8dc 0%, #e8ddd4 50%, #ddd0c0 100%);
    color: #6b4423;
    line-height: 1.6;
    min-height: 100vh;
    direction: rtl;
    transition: all 0.3s ease;
}

/* Language Swit.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999999; /* Even higher z-index */
    display: flex !important;
    gap: 8px; /* Increased gap */
    background: rgba(255, 255, 255, 1); 
    backdrop-filter: blur(12px); /* Slightly more blur */
    border-radius: 30px; /* More rounded */
    padding: 12px; /* More padding */
    box-shadow: 0 8px 30px rgba(107, 68, 35, 0.5); /* Even stronger shadow */
    border: 4px solid #8b5a3c; /* Thicker, solid border */
}

.lang-btn {
    padding: 14px 25px; /* Even larger padding */
    border: none;
    background: transparent;
    color: #6b4423;
    border-radius: 28px; /* More rounded */
    cursor: pointer;
    font-size: 1.1rem; /* Larger font */
    font-weight: 800; /* Extra bold font */
    transition: all 0.3s ease;
    min-width: 90px; /* Wider buttons */
    text-align: center;
    opacity: 1 !important;
}

.lang-btn:hover {
    background: rgba(139, 90, 60, 0.4); /* More distinct hover */
    transform: translateY(-3px); /* More pronounced lift */
    box-shadow: 0 6px 15px rgba(107, 68, 35, 0.4);
}

.lang-btn.active {
    background: #8b5a3c;
    color: white;
    box-shadow: 0 6px 15px rgba(107, 68, 35, 0.5);
}r {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    padding: 2rem 0;
    text-align: center;
}

.logo-container {
    display: inline-block;
    animation: fadeInDown 1s ease-out;
    background: rgba(240, 232, 220, 0.8);
    border-radius: 50%;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(107, 68, 35, 0.1);
    border: 2px solid rgba(139, 90, 60, 0.2);
}

.logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(107, 68, 35, 0.1));
}

/* Main content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.content-lang {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Hero section */
.hero-section {
    text-align: center;
    padding: 2rem 0;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6b4423;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(107, 68, 35, 0.1);
}

.coming-soon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.coming-soon-text {
    font-size: 3rem;
    font-weight: 600;
    color: #8b5a3c;
    background: linear-gradient(45deg, #6b4423, #8b5a3c, #a0522d);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

.dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd0c0;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.dot.active {
    opacity: 1;
    background-color: #8b5a3c;
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(139, 90, 60, 0.4);
}

/* Description section */
.description-section {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.description-card {
    background: rgba(240, 232, 220, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(107, 68, 35, 0.1);
    border: 1px solid rgba(139, 90, 60, 0.2);
    text-align: center;
}

.description-card h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #6b4423;
    margin-bottom: 1.5rem;
}

.description-card p {
    font-size: 1.2rem;
    color: #6b4423;
    line-height: 1.8;
}

/* Features section */
.features-section {
    animation: fadeInUp 1s ease-out 0.9s both;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(240, 232, 220, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 6px 24px rgba(107, 68, 35, 0.08);
    border: 1px solid rgba(139, 90, 60, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(107, 68, 35, 0.15);
    background: rgba(240, 232, 220, 0.9);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #6b4423;
    margin-bottom: 0.8rem;
}

.feature-card p {
    color: #6b4423;
    font-size: 1rem;
    line-height: 1.6;
}

/* CTA section */
.cta-section {
    animation: fadeInUp 1s ease-out 1.2s both;
}

.cta-card {
    background: linear-gradient(135deg, rgba(240, 232, 220, 0.9), rgba(232, 221, 212, 0.9));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(107, 68, 35, 0.1);
    border: 1px solid rgba(139, 90, 60, 0.3);
}

.cta-card h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #6b4423;
    margin-bottom: 1rem;
}

.cta-card p {
    font-size: 1.2rem;
    color: #6b4423;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.website-info {
    display: inline-block;
    background: rgba(240, 232, 220, 0.9);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 2px solid #8b5a3c;
    box-shadow: 0 4px 16px rgba(139, 90, 60, 0.2);
}

.website-url {
    font-size: 1.3rem;
    font-weight: 600;
    color: #6b4423;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    padding: 2rem 0;
    text-align: center;
    color: #8b5a3c;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* LTR Support for English and French */
[dir="ltr"] .container {
    direction: ltr;
}

[dir="ltr"] .language-switcher {
    right: auto;
    left: 20px;
}

[dir="ltr"] .features-grid {
    direction: ltr;
}

[dir="ltr"] .feature-card,
[dir="ltr"] .description-card,
[dir="ltr"] .cta-card {
    text-align: left;
}

[dir="ltr"] .hero-section,
[dir="ltr"] .header {
    text-align: center;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .language-switcher {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        margin: 20px auto;
        width: fit-content;
    }
    
    .logo-container {
        padding: 15px;
    }
    
    .logo {
        width: 120px;
        height: 120px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .coming-soon-text {
        font-size: 2.2rem;
    }
    
    .description-card,
    .cta-card {
        padding: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .main-content {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.7rem;
    }
    
    .coming-soon-text {
        font-size: 1.8rem;
    }
    
    .description-card h3,
    .cta-card h3 {
        font-size: 1.6rem;
    }
    
    .description-card p,
    .cta-card p {
        font-size: 1rem;
    }
    
    .website-url {
        font-size: 1.1rem;
    }
    
    .lang-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .logo-container {
        padding: 10px;
    }
}

