@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

/* Ana stiller */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #f4e4bc; /* Osmanlı kağıdı rengi */
}

.container {
    width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Stili */
header {
    background: #2c1810;
    padding: 50px 0;
    border-bottom: 5px solid #d4af37;
}

header h1 {
    color: #d4af37;
    font-size: 42px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Besmele ve Ayet Bölümü */
.verse-container {
    background: #fff9e6;
    border: 3px solid #8B4513;
    border-radius: 15px;
    padding: 40px 30px;
    margin: 40px auto;
    max-width: 800px;
    position: relative;
    text-align: center;
}

.verse-container::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid #d4af37;
    border-radius: 10px;
    pointer-events: none;
}

.tagline-container {
    background: #fff9e6;
    border: 3px solid #8B4513;
    border-radius: 15px;
    padding: 20px 30px;
    margin: 40px auto;
    max-width: 600px;
    position: relative;
    text-align: center;
}

.tagline-container::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid #d4af37;
    border-radius: 10px;
    pointer-events: none;
}

.tagline {
    font-family: 'Amiri', serif;
    font-size: 20px;
    color: #8B4513;
    text-align: center;
    margin: 0;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(139, 69, 19, 0.2);
    position: relative;
}

.bismillah {
    font-family: 'Noto Naskh Arabic', serif;
    font-size: 42px;
    color: #8B4513;
    text-align: center;
    margin: 20px 0;
    line-height: 1.8;
    text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.3);
}

.arabic-verse {
    font-family: 'Noto Naskh Arabic', serif;
    font-size: 36px;
    color: #8B4513;
    text-align: center;
    margin: 30px 0;
    line-height: 1.8;
    text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.3);
}

.turkish-verse {
    font-family: 'Amiri', serif;
    font-size: 22px;
    color: #5c3a21;
    text-align: center;
    margin: 20px 0;
    line-height: 1.6;
    font-style: italic;
}

.verse-source {
    font-family: 'Amiri', serif;
    font-size: 18px;
    color: #8B4513;
    text-align: center;
    margin-top: 20px;
    font-style: italic;
}

/* Hizmet kartları için güncelleme */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 50px auto;
    max-width: 1000px;
}

.service-item {
    background: #fff9e6;
    border: 3px solid #8B4513;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid #d4af37;
    border-radius: 10px;
    pointer-events: none;
}

.service-item h3 {
    font-family: 'Amiri', serif;
    font-size: 32px;
    color: #8B4513;
    margin: 20px 0;
    text-shadow: 
        -1px -1px 0 #fff9e6,
        1px -1px 0 #fff9e6,
        -1px 1px 0 #fff9e6,
        1px 1px 0 #fff9e6,
        2px 2px 4px rgba(139, 69, 19, 0.3);
}

.service-item ul {
    list-style: none;
    margin: 30px 0;
    padding: 0;
    text-align: left;
}

.service-item li {
    font-family: 'Amiri', serif;
    font-size: 18px;
    color: #5c3a21;
    padding: 15px 0;
    border-bottom: 1px solid #d4af37;
    margin: 0;
    line-height: 1.6;
}

.btn-order {
    display: inline-block;
    padding: 15px 30px;
    background: #8B4513;
    color: #fff9e6;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Amiri', serif;
    font-size: 18px;
    margin-top: 20px;
    border: 2px solid #d4af37;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.btn-order:hover {
    background: #d4af37;
    color: #2c1810;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 10px;
    }
}

/* Önemli bilgilendirme kutusu */
.important-notice {
    background: #fff9e6;
    border: 3px solid #8B4513;
    border-radius: 15px;
    padding: 30px;
    margin: 40px auto;
    max-width: 800px;
    position: relative;
    text-align: center;
}

.important-notice::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid #d4af37;
    border-radius: 10px;
    pointer-events: none;
}

.important-notice p {
    font-family: 'Amiri', serif;
    font-size: 18px;
    color: #5c3a21;
    line-height: 1.8;
    margin: 15px 0;
    position: relative;
    text-shadow: 1px 1px 2px rgba(139, 69, 19, 0.1);
}

.important-notice strong {
    color: #8B4513;
    font-weight: bold;
}

.intro-container {
    background: #2c1810; /* Koyu zemin */
    border: 3px solid #d4af37;
    border-radius: 15px;
    padding: 40px;
    margin: 40px auto;
    max-width: 800px;
    position: relative;
    text-align: center;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.intro-container::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 2px solid #d4af37;
    border-radius: 10px;
    pointer-events: none;
}

.intro-title {
    font-family: 'Amiri', serif;
    font-size: 36px;
    color: #d4af37;
    margin-bottom: 25px;
    text-shadow: 
        -1px -1px 0 #2c1810,
        1px -1px 0 #2c1810,
        -1px 1px 0 #2c1810,
        1px 1px 0 #2c1810,
        2px 2px 6px rgba(0,0,0,0.6);
    position: relative;
    letter-spacing: 1px;
}

.intro-text {
    font-family: 'Amiri', serif;
    font-size: 24px;
    color: #d4af37;
    line-height: 1.8;
    margin: 0;
    text-shadow: 
        -1px -1px 0 #2c1810,
        1px -1px 0 #2c1810,
        -1px 1px 0 #2c1810,
        1px 1px 0 #2c1810,
        2px 2px 4px rgba(0,0,0,0.5);
    position: relative;
    padding: 0 20px;
    letter-spacing: 0.5px;
}

/* Süsleme için ekstra detaylar */
.intro-container::after {
    content: '☪';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 36px;
    color: #d4af37;
    background: #f4e4bc;
    padding: 0 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hadith-container {
    background: #fff9e6;
    border: 3px solid #d4af37; /* Altın rengi border */
    border-radius: 15px;
    padding: 50px 40px;
    margin: 40px auto;
    max-width: 800px;
    position: relative;
    text-align: center;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.hadith-container::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 2px solid #d4af37;
    border-radius: 10px;
    pointer-events: none;
}

.hadith-text {
    font-family: 'Amiri', serif;
    font-size: 28px; /* Daha büyük font */
    color: #d4af37; /* Altın rengi yazı */
    line-height: 1.8;
    margin: 30px 0;
    text-shadow: 
        -1px -1px 0 #2c1810,
        1px -1px 0 #2c1810,
        -1px 1px 0 #2c1810,
        1px 1px 0 #2c1810,
        2px 2px 6px rgba(0,0,0,0.6);
    position: relative;
    padding: 0 20px;
}

.hadith-source {
    font-family: 'Amiri', serif;
    font-size: 22px; /* Daha büyük kaynak yazısı */
    color: #d4af37;
    font-style: italic;
    margin: 20px 0;
    text-shadow: 
        -1px -1px 0 #2c1810,
        1px -1px 0 #2c1810,
        -1px 1px 0 #2c1810,
        1px 1px 0 #2c1810,
        2px 2px 4px rgba(0,0,0,0.5);
}

.hadith-divider {
    color: #d4af37;
    font-size: 36px; /* Daha büyük ayraç */
    margin: 40px 0;
    text-shadow: 
        -1px -1px 0 #2c1810,
        1px -1px 0 #2c1810,
        -1px 1px 0 #2c1810,
        1px 1px 0 #2c1810,
        2px 2px 4px rgba(0,0,0,0.5);
}

.message-container {
    background: #fff9e6;
    border: 3px solid #d4af37;
    border-radius: 15px;
    padding: 40px;
    margin: 40px auto;
    max-width: 800px;
    position: relative;
    text-align: center;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.message-container::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 2px solid #d4af37;
    border-radius: 10px;
    pointer-events: none;
}

.message-text {
    font-family: 'Amiri', serif;
    font-size: 24px;
    color: #d4af37;
    line-height: 1.8;
    margin: 0;
    text-shadow: 
        -1px -1px 0 #2c1810,
        1px -1px 0 #2c1810,
        -1px 1px 0 #2c1810,
        1px 1px 0 #2c1810,
        2px 2px 4px rgba(0,0,0,0.5);
    position: relative;
    padding: 0 20px;
}

/* Modal Stili */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover {
    color: black;
}

.modal h3 {
    color: #8B4513;
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(139, 69, 19, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #5c3a21;
    margin-bottom: 8px;
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #d4af37;
    border-radius: 8px;
    background: #fff;
    font-family: 'Amiri', serif;
    font-size: 16px;
    color: #2c1810;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background: #8B4513;
    color: #fff9e6;
    border: 2px solid #d4af37;
    padding: 12px 30px;
    border-radius: 8px;
    font-family: 'Amiri', serif;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #d4af37;
    color: #2c1810;
}

.price-text {
    font-size: 20px;
    color: #8B4513;
    font-weight: bold;
    margin: 10px 0;
    text-align: center;
}

.price-note {
    font-size: 14px;
    color: #5c3a21;
    font-style: italic;
    text-align: center;
    margin-top: 5px;
}

#priceInfo {
    background: #fff9e6;
    border: 1px solid #d4af37;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    text-align: center;
}

.price-text {
    font-size: 18px;
    color: #8B4513;
    font-weight: bold;
    margin: 5px 0;
}

.price-note {
    font-size: 14px;
    color: #5c3a21;
    font-style: italic;
    margin-top: 5px;
}

#addressGroup textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #d4af37;
    border-radius: 8px;
    resize: vertical;
    min-height: 80px;
}

.address-note {
    display: block;
    color: #8B4513;
    font-style: italic;
    margin-top: 5px;
    font-size: 14px;
}

.price-box {
    background: #fff9e6;
    border: 2px solid #d4af37;
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
    text-align: center;
}

.price-box p {
    color: #8B4513;
    font-size: 18px;
    font-weight: bold;
    margin: 5px 0;
}

.price-box small {
    display: block;
    color: #5c3a21;
    font-style: italic;
    margin-top: 5px;
}

.service-note {
    display: block;
    color: #8B4513;
    font-style: italic;
    margin-top: 5px;
}

#addressGroup textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #d4af37;
    border-radius: 8px;
    resize: vertical;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form-col {
    flex: 1;
}

.form-col label {
    display: block;
    margin-bottom: 5px;
    color: #8B4513;
}

.form-col input {
    width: 100%;
    padding: 8px;
    border: 2px solid #d4af37;
    border-radius: 8px;
}

#additionalFields {
    background: #fff9e6;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
    border: 2px solid #d4af37;
}

/* Mobil uyumluluk için medya sorguları */
@media screen and (max-width: 768px) {
    /* Genel container */
    .container {
        width: 95%;
        padding: 0 10px;
    }

    /* Header */
    header h1 {
        font-size: 24px;
    }
    
    .tagline {
        font-size: 16px;
    }

    /* Hizmetler */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-item {
        margin: 10px 0;
    }

    /* Modal Form */
    .modal-content {
        width: 95%;
        margin: 10px auto;
        padding: 15px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group label {
        font-size: 14px;
    }

    input, select, textarea {
        width: 100%;
        padding: 8px;
        font-size: 14px;
    }

    /* Butonlar */
    .btn-order {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* SSS */
    .faq-item h3 {
        font-size: 16px;
    }

    .faq-item p {
        font-size: 14px;
    }
}

/* Daha küçük ekranlar için */
@media screen and (max-width: 480px) {
    header h1 {
        font-size: 20px;
    }

    .arabic-verse {
        font-size: 20px;
    }

    .verse-meaning {
        font-size: 14px;
    }

    .modal-content {
        padding: 10px;
    }
}

.thank-you-page {
    background: #f9f9f9;
    padding: 40px 20px;
    min-height: 100vh;
}

.thank-you-page .container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.thank-you-page h1 {
    color: #45a049;
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

.message {
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.verse, .hadith {
    margin: 25px 0;
    padding: 20px;
    background: #f5f5f5;
    border-right: 4px solid #45a049;
    border-radius: 5px;
}

.source {
    color: #666;
    font-style: italic;
    margin-top: 10px;
}

.btn-back {
    display: block;
    width: max-content;
    margin: 30px auto 0;
    padding: 12px 25px;
    background: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
}

.btn-back:hover {
    background: #45a049;
}

/* Mobil uyumluluk */
@media screen and (max-width: 768px) {
    .thank-you-page .container {
        padding: 20px;
    }

    .thank-you-page h1 {
        font-size: 24px;
    }

    .message {
        font-size: 15px;
    }
}