/* --- Custom Horoscope Page Styles --- */

/* --- General Section Styling --- */
.as_section_heading {
    font-size: 3rem; /* 48px */
    color: #141313;
    font-family: 'Playfair Display', serif; /* A more elegant font for headings */
    margin-bottom: 1rem;
}

.as_section_description {
    font-size: 1.125rem; /* 18px */
    color: #6d6d6d;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

/* --- Horoscope Forecasts Section --- */
.as_horoscope_wrapper {
    padding: 80px 0;
    background-color: #f8f9fa; /* Light background for contrast */
}

.custom_horoscope_bg {
    
    background-image: url('../images/background/bg18.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed; 
    padding: 80px 0;
}

.horoscope-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.zodiac-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    text-decoration: none;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zodiac-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.2);
    border-color: #ffc107;
}

.zodiac-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    object-fit: contain;
}

.zodiac-title {
    font-size: 1.5rem; /* 24px */
    color: #333333;
    font-weight: 600;
    margin-bottom: 5px;
}

.zodiac-date {
    font-size: 0.9rem; /* 14.4px */
    color: #777777;
    margin: 0;
}


/* --- Birth Chart Section --- */
.as_birth_chart_wrapper {
    padding: 100px 0;
    background-image: url('../images/background/bg16.jpg'); /* Example background image */
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.as_birth_chart_form .form-control {
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid #444;
    color: #ffffff;
    padding: 15px 20px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 1rem; /* 16px */
}

.as_birth_chart_form .form-control::placeholder {
    color: #a0a0a0;
}

.as_birth_chart_form .form-control:focus {
    background-color: rgba(0, 0, 0, 0.7);
    border-color: #ffc107;
    box-shadow: none;
    color: #ffffff;
}

.as_birth_chart_form .as_btn {
    background-color: #ffc107;
    color: #000000;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.as_birth_chart_form .as_btn:hover {
    background-color: #ffda73;
}

/* Make input fields clear and readable */
.as_birth_chart_wrapper .form-control {
    background: rgba(255,255,255,0.95);
    color: #222 !important;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    box-shadow: none;
    padding: 14px 18px;
    transition: border 0.2s;
}

.as_birth_chart_wrapper .form-control:focus {
    border: 1.5px solid #9b7f56;
    background: #fff;
    color: #222 !important;
    outline: none;
}

.as_birth_chart_wrapper .form-control::placeholder {
    color: #888 !important;
    opacity: 1;
}