/* Simple Yellow Theme CSS */

:root {
    --primary: #f39c12;    /* Orange-Yellow */
    --secondary: #f1c40f;  /* Bright Yellow */
    --background: #fffdf5; /* Light creamy yellow */
    --text-main: #333333;
    --text-muted: #666666;
    --card-bg: rgba(255, 255, 255, 0.85); /* Slightly transparent to show the background */
    --card-border: #f1c40f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background: var(--background) url('/bg.png?v=2') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
}

.navbar {
    background-color: var(--primary);
    padding: 1rem 0;
    border-bottom: 2px solid #e67e22;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-section {
    padding: 80px 20px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.85);
    border-bottom: 2px solid var(--secondary);
}

.main-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #e67e22;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.features-section {
    padding: 40px 20px;
}

.feature-card, .planet-card, .nakshatra-card {
    background-color: var(--card-bg);
    border: 2px solid var(--card-border);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    color: #e67e22;
}

.feature-card p {
    color: var(--text-muted);
}

/* Normal Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background-color: var(--primary);
    border-bottom: 3px solid #e67e22;
}

.btn-primary:hover {
    background-color: #e67e22;
}

.btn-secondary {
    background-color: #bdc3c7;
    border-bottom: 3px solid #95a5a6;
    color: #333;
    text-shadow: none;
}

.btn-secondary:hover {
    background-color: #95a5a6;
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Forms and Results */
.form-container, .result-container {
    background-color: var(--card-bg);
    border: 2px solid var(--card-border);
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    margin: 40px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #444;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.result-box {
    background-color: #fff;
    border: 2px dashed var(--secondary);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.result-value {
    font-size: 2rem;
    font-weight: bold;
    color: #e67e22;
    margin: 1rem 0;
}

footer {
    padding: 2rem;
    text-align: center;
    border-top: 2px solid var(--secondary);
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--text-muted);
}

/* Basic Grid Setup */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.col-lg-4, .col-md-6, .col-12 {
    padding: 10px;
}

@media (min-width: 992px) {
    .col-lg-4 { flex: 0 0 33.333%; max-width: 33.333%; }
}

@media (min-width: 768px) and (max-width: 991px) {
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
}

@media (max-width: 767px) {
    .col-12 { flex: 0 0 100%; max-width: 100%; }
}
