/* 🔮 Astrolojik Hesaplama Formları */

/* Mobil öncelikli temel stiller */
body .astro-grid-container, 
body .astro-grid-item, 
body .astro-form-wrapper {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Grid container (kartlar ve içerikler için) */
.astro-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

/* Tablet boyutu (768px ve altı) */
@media screen and (max-width: 768px) {
    .astro-grid-container {
        grid-template-columns: 1fr !important; /* Tek sütun */
        gap: 15px;
        margin: 15px 10px;
    }
}

/* Mobil boyutu (480px ve altı) */
@media screen and (max-width: 480px) {
    .astro-grid-container {
        grid-template-columns: 1fr !important; /* Tek sütun */
        margin: 10px 5px;
        gap: 10px;
    }
}

/* Çok küçük ekranlar (360px ve altı) */
@media screen and (max-width: 360px) {
    .astro-grid-container {
        grid-template-columns: 1fr !important; /* Tek sütun */
    }
}

/* Kart stili */
.astro-grid-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.astro-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Form stili */
.astro-form {
    max-width: 400px;
    margin: 0 auto;
}

.astro-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 14px;
    color: #333;
}

.astro-form input,
.astro-form select,
.astro-form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    box-sizing: border-box;
}

/* Buton stili */
.astro-btn {
    display: inline-block;
    width: 100%;
    background: #5a2ca0;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    border: none;
    border-radius: 6px;
    padding: 12px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.astro-btn:hover {
    background: #7a3fcf;
    transform: translateY(-2px);
}

.astro-btn:active {
    transform: scale(0.98);
}

/* Sonuç kutusu */
.astro-sonuc {
    margin-top: 15px;
    padding: 15px;
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.5;
    color: #444;
}

/* Select elementleri için mobilde daha iyi dokunmatik deneyimi */
.astro-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 40px;
}

/* Input ve select öğelerine odaklanma durumu */
.astro-form input:focus,
.astro-form select:focus {
    outline: none;
    border-color: #5a2ca0;
    box-shadow: 0 0 0 2px rgba(90, 44, 160, 0.2);
}

/* Önemli: Tema çakışmalarını önlemek için */
.astro-form-wrapper {
    width: 100%;
}

#wrap-yks, #wrap-ay {
    width: 100%;
}

/* Responsive stiller */
/* Tablet boyutu (768px ve altı) */
@media screen and (max-width: 768px) {
    .astro-grid-container {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 15px 10px;
    }
    
    .astro-grid-item {
        padding: 15px;
        margin: 0 5px;
        width: auto;
    }
    
    .astro-form {
        max-width: 100%;
        padding: 0 5px;
    }
    
    .astro-form-wrapper {
        width: 100%;
        max-width: 100%;
    }
    
    #wrap-yks, #wrap-ay {
        width: 100%;
        max-width: 100%;
    }
}

/* Mobil boyutu (480px ve altı) */
@media screen and (max-width: 480px) {
    .astro-grid-container {
        margin: 10px 5px;
        gap: 10px;
    }
    
    .astro-grid-item {
        padding: 12px;
        margin: 0 0 15px 0;
        border-radius: 8px;
    }
    
    .astro-form {
        max-width: 100%;
        padding: 0;
    }
    
    .astro-form label {
        font-size: 15px;
    }
    
    .astro-form input,
    .astro-form select,
    .astro-form button {
        padding: 12px;
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .astro-btn {
        padding: 14px;
        font-size: 16px;
    }
    
    .astro-sonuc {
        padding: 12px;
        font-size: 14px;
    }
    
    /* Form başlıkları için mobil uyumluluk */
    .astro-form-wrapper h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        text-align: center;
    }
}

/* Çok küçük ekranlar (360px ve altı) */
@media screen and (max-width: 360px) {
    .astro-grid-item {
        padding: 10px;
        margin: 0 0 10px 0;
    }
    
    .astro-form input,
    .astro-form select,
    .astro-form button {
        padding: 10px;
    }
    
    .astro-btn {
        padding: 12px 10px;
    }
    
    .astro-form-wrapper h3 {
        font-size: 1.2rem;
    }
}