/* Eid Landing Page CSS for WordPress */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
}

.eid-landing {
    min-height: 100vh;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url('/lovable-uploads/3c4006f8-bf43-4949-85ea-0ae812465db3.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 70vh;
    z-index: 1;
}

.main-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 1.5rem;
    padding-top: 7rem;
}

.content-container {
    padding: 2rem;
    max-width: 20rem;
    text-align: center;
}

.text-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.arabic-text,
.english-text {
    font-size: 0.875rem;
    line-height: 1.625;
    color: #7E3E2F;
    margin: 0;
}

.arabic-text {
    direction: rtl;
    text-align: right;
}

.english-text {
    direction: ltr;
    text-align: left;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.social-link {
    display: inline-block;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    opacity: 0.7;
}

.social-icon {
    width: 24px;
    height: 24px;
    color: #7E3E2F;
    fill: #7E3E2F;
    cursor: pointer;
}

.social-icon.x-icon,
.social-icon.tiktok-icon {
    fill: #7E3E2F;
    stroke: none;
}

/* Responsive Design */
@media (min-width: 640px) {
    .arabic-text,
    .english-text {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .arabic-text,
    .english-text {
        font-size: 1.125rem;
    }
}

/* RTL Support */
[dir="rtl"] {
    text-align: right;
}

[dir="ltr"] {
    text-align: left;
}

/* WordPress Theme Compatibility */
.eid-landing p {
    margin-bottom: 0;
}

.eid-landing a {
    text-decoration: none;
}

.eid-landing a:hover {
    text-decoration: none;
}