/* 
   SATYA JYOTISH - BRAND CSS 
   Micro-Strategy Colors:
   - Primary: #632148 (Tyrian Purple - Spiritual Royalty)
   - Accent: #C4B454 (Muted Gold - Wealth/Lakshmi)
   - Trust: #2F4059 (Midnight Blue - Stability)
   - Text: #0D0D0D (Soft Charcoal - Readability)
*/

:root {
    --primary-color: #632148;
    --accent-color: #C4B454;
    --trust-color: #2F4059;
    --text-color: #0D0D0D;
    --bg-light: #F9F5F0;
    /* Creamy paper feel */
    --white: #ffffff;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-light);
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: 'Cinzel', serif;
    color: var(--primary-color);
}

/* HERO SECTION */
.hero {
    background: linear-gradient(rgba(47, 64, 89, 0.8), rgba(99, 33, 72, 0.8)), url('hero-bg-placeholder.jpg');
    /* Need to add image later */
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 5%;
    text-align: left;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-content {
    max-width: 800px;
}

.brand-title {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--accent-color);
    /* Gold for the name */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tagline {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 20px;
}

.cta-button {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: scale(1.05);
}

/* SECTIONS */
.section-container {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.bg-light {
    background-color: #ffffff;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 10px auto 0;
}

/* PRICING GRID */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.price-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: transform 0.3s;
    position: relative;
}

.price-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.price-card.popular {
    border: 2px solid var(--accent-color);
    background: #FFFDF5;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 20px;
}

.price {
    font-size: 2.5rem;
    color: var(--trust-color);
    margin: 15px 0;
    font-family: 'Cinzel', serif;
}

.shagun {
    font-size: 1rem;
    color: #888;
    font-family: 'Inter', sans-serif;
}

.features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.features li::before {
    content: '✓';
    color: var(--accent-color);
    margin-right: 10px;
    font-weight: bold;
}

.book-btn,
.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 600;
}

.book-btn:hover,
.submit-btn:hover {
    background-color: #4a1835;
}

/* BOOKING FORM */
.booking-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
}

/* FOOTER */
footer {
    background-color: var(--trust-color);
    color: var(--white);
    padding: 40px 20px;
    text-align: center;
}

.legal-shield {
    margin: 20px auto;
    max-width: 600px;
    opacity: 0.8;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 0;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .brand-title {
        font-size: 2.2rem;
    }

    .booking-form-wrapper {
        padding: 20px;
    }
}