/* التصميم الأساسي */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 20px;
    text-align: center;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #50c8b8d5;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-logo {
    max-height: 50px;
}

nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
    font-size: 1rem;
}
header nav {
    display: flex;
}


header nav {
    display: flex;
    flex-grow: 1;
    justify-content: flex-end; /* وضع الروابط في نهاية الـheader */
}

header nav a {
    color: white;
    text-decoration: none;
    margin-left: 10px;
    font-weight: bold;
    font-size: 0.9em;
    padding: 5px 10px; /* تصغير الحشوة */
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

header nav a:hover {
    background-color: #ffdd40;
    color: #333;
    transform: scale(1.1);
}

h1 {
    margin: 20px 0;
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.card-container {
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;  
}


.card {
    background-color: #50c8b8d5;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    width: 100%;
    height: fit-content;
    object-fit: cover;
}
 .card-container .img1{
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 15px;
}

.card-content h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
}

.card-content p {
    margin: 10px 0;
    color: #666;
}

.details {
    display: none;
    padding: 15px;
    background-color: #f9f9f9;
    border-top: 1px solid #ddd;
}

.details img {
    width: 100%;
    margin: 10px 0;
}
.odeme {
    text-align: center;
    margin-top: 20px;
}

.divider {
    margin-top: 20px;
    height: 1px;
    background-color: #ddd;
}

/* WhatsApp butonu */
.whatsapp-button1 {
    display: inline-flex;
    align-items: center;
    background-color: #50a0ec; /* Renk ayarı */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Gölge efekti */
    margin-top: 10px;
}

#about-us {
    position: relative;
    padding: 200px 100px;
    text-align: center;
    background: url("wallpaper\ anime.jpeg") no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: auto;
    max-width: 100%;
    color: #ffffff; /* لون النص */
    margin: 10px;
}
#about-us h1,p,h2{
    margin: 10px;
}
#about-us h1,
#about-us p,
#about-us h2 {
    position: relative;
    display: block;
    z-index: 1;
}

#about-us h1::before,
#about-us p::before,
#about-us h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* لون شفاف */
    filter: blur(8px); /* مقدار التمويه */
    border-radius: 4px;
    z-index: -1;
}


/* Contact Us Section */
#contact-us {
    background-color: #f4f4f4; /* Light background */
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    margin: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#contact-us h1 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
}

#contact-us p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 15px;
}

#contact-us form {
    margin-top: 20px;
}

#contact-us label {
    font-size: 1em;
    color: #333;
    margin-top: 10px;
    display: block;
    text-align: right;
}

#contact-us input[type="text"],
#contact-us input[type="email"],
#contact-us textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1em;
}

.submit-button {
    background-color: #50c8b8;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #3da99a;
}

/* WhatsApp Button */
.whatsapp-link {
    text-decoration: none;
}

.whatsapp-button {
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s ease;
}

.whatsapp-button i {
    margin-left: 8px;
    font-size: 1.2em;
}

.whatsapp-button:hover {
    background-color: #1ebe5d;
}
footer {
    background-color: #333;
    color: #ffffff;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
    font-size: 0.9em;
}

footer p {
    margin: 0;
    font-size: 1em;
}

/* Social Icons in Footer */
#footer-social-icons {
    margin-top: 10px;
}

#footer-social-icons a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 8px;
    font-size: 1.5em;
    transition: color 0.3s ease;
}

#footer-social-icons a:hover {
    color: #ffdd40; /* لون مميز عند التمرير */
}


footer {
    margin-top: 40px;
    padding: 20px;
    background-color: #333;
    color: #fff;
}

#footer-social-icons a {
    margin: 0 5px;
    color: #fff;
    font-size: 1.5rem;
}
.details img, .details video {
    width: 100%;
    margin: 10px 0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
    header {
        flex-wrap: wrap;
        padding: 10px;
    }

    .header-logo {
        margin-bottom: 10px;
    }

    nav a {
        font-size: 0.8rem;
        padding: 5px 8px;
    }

    #about-us {
        padding: 20px 10px;
    }

    .card img {
        height: 150px;
    }

    .card-content h3 {
        font-size: 0.9rem;
    }

    .card-content p {
        font-size: 0.8rem;
    }

    footer {
        font-size: 0.7rem;
    }
}