:root {
    --primary-color: #6A1B9A;  /* Deep Purple */
    --secondary-color: #4A148C;  /* Dark Purple */
    --text-color: #212121;
    --background-color: #F3E5F5;  /* Light Lavender */
    --white: #ffffff;
    --accent-color: #9C27B0;  /* Bright Purple */
    --soft-gradient: linear-gradient(135deg, #E1BEE7 0%, #F3E5F5 100%);
    --shadow-subtle: 0 4px 6px rgba(106, 27, 154, 0.1);
    --shadow-medium: 0 10px 20px rgba(106, 27, 154, 0.15);
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Section Redesign */
.hero-chakra {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--soft-gradient);
    padding: 50px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 192, 203, 0.2);
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    padding: 50px;
    width: 100%;
}

.hero-content::before {
    content: '✿';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.chakra-calculator {
    flex: 1;
    background: var(--background-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-subtle);
}

/* Button Styles Enhancement */
button, 
.btn, 
.calculator-btn, 
.insights-btn, 
.guidance-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-family: 'Quicksand', 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

button:hover, 
.btn:hover, 
.calculator-btn:hover, 
.insights-btn:hover, 
.guidance-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(106, 27, 154, 0.3);
}

/* Card Styles */
.energy-card, 
.calculator-item, 
.insights-card, 
.guidance-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(106, 27, 154, 0.1);
    transition: all 0.3s ease;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-subtle);
}

.energy-card:hover, 
.calculator-item:hover, 
.insights-card:hover, 
.guidance-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(106, 27, 154, 0.2);
}

/* Input Styles */
#birthDate1, 
#birthDate2 {
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.7);
    font-family: 'Quicksand', sans-serif;
    width: 100%;
    text-align: center;
}

.date-prompt {
    display: block;
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

/* Section Backgrounds */
.energy-section {
    background: linear-gradient(135deg, #F3E5F5 0%, #E1BEE7 100%);
    padding: 80px 0;
}

.calculator-showcase {
    background: linear-gradient(135deg, #F3E5F5 0%, #C5CAE9 100%);
    padding: 80px 0;
}

.additional-insights {
    background: linear-gradient(135deg, #E1BEE7 0%, #F3E5F5 100%);
    padding: 80px 0;
}

.scientific-foundation, 
.expert-guidance {
    padding: 80px 0;
    background: var(--white);
}

.energy-grid, 
.calculator-grid, 
.insights-grid, 
.guidance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Footer Styling */
.site-footer {
    background: linear-gradient(135deg, rgba(106, 27, 154, 0.05) 0%, rgba(74, 20, 140, 0.05) 100%);
    padding: 50px 0;
}

.site-footer::after {
    content: '❀';
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 3rem;
    color: var(--secondary-color);
    opacity: 0.2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        padding: 20px;
    }

    .hero-text, 
    .chakra-calculator {
        width: 100%;
    }

    .hero-text h1 {
        font-size: 2rem;
    }
}

/* Responsive Button Adjustments */
@media (max-width: 768px) {
    button, 
    .btn, 
    .calculator-btn, 
    .insights-btn, 
    .guidance-btn {
        width: 100%;
        padding: 10px 15px;
        margin-top: 10px;
    }
}

/* Form Styling */
#designForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Result Styling */
.design-result {
    background: var(--white);
    border-left: 5px solid;
    padding: 20px;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-subtle);
}

.compatibility-result {
    background: var(--white);
    border-left: 5px solid;
    padding: 20px;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-subtle);
}