/* Genel Ayarlar */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    direction: rtl;
    text-align: right;
    background-color: #f9f9f9;
    margin: 0;
    padding: 20px;
}

/* Header */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #50c8b8d5;
    color: #101010;
}

.header-logo {
    width: 40px;
    height: auto;
}

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);
}

/* Kartlar İçin Ana Konteyner */
.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

/* Kart Stili */
.img{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 20px;
    
}

.img img {
    flex: 1 1 calc(33.333% - 10px);
    margin-top: 10px;
    text-align: center;
    background-color: #50c8b86c;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    gap: 20px; /* Fotoğraflar arasındaki boşluk */
    justify-content: center; /* Fotoğrafları yatayda ortala */
    flex-wrap: nowrap; /* Fotoğrafları aynı satırda tut */
    overflow-x: auto; /* Satıra sığmazsa yatay kaydırma ekle */
}

/* Notlar Bölümü */
.note {
    text-align: center;
    padding: 40px;
    background-color: #f9f9f9;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.note h1 {
    font-size: 26px;
    color: #b22222;
    margin-bottom: 15px;
}

.note p  {
    font-size: 18px;
    color: #333;
    margin: 10px 0;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-radius: 5px;
}


/* WhatsApp Butonu */
.whatsapp-button button {
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.whatsapp-button button i {
    margin-left: 8px;
}

.whatsapp-button button:hover {
    background-color: #1ebe5d;
}

/* Sosyal Medya Iconları */
#social-icons, #footer-social-icons {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

#social-icons a, #footer-social-icons a {
    margin: 0 15px;
    color: #333;
    font-size: 30px;
    transition: color 0.3s ease;
}

#social-icons a:hover, #footer-social-icons a:hover {
    color: #25D366;
}
/* Odeme bölümü */
.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;
}

.whatsapp-button1 i {
    margin-left: 8px;
    font-size: 1.2em;
}

/* Hover efekti */
.whatsapp-button:hover {
    background-color: #407bbd; /* Daha koyu bir mavi */
    transform: scale(1.05);
}
/* قسم من نحن */
#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 */
#contact-us.whatsapp-link {
    text-decoration: none;
}

#contact-us .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;
}

#contact-us.whatsapp-button i {
    margin-left: 8px;
    font-size: 1.2em;
}

#contact-us.whatsapp-button:hover {
    background-color: #1ebe5d;
}

/* Footer */
footer {
    background-color: #333;
    color: #ffffff;
    text-align: center;
    padding: 15px;
    font-size: 1em;
}

footer p {
    margin: 0;
}

#footer-social-icons {
    margin-top: 10px;
}

#footer-social-icons a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5em;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .card {
        width: 100%;
    }
}
