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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 50%, #1a1a1a 100%);
    min-height: 100vh;
}

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

/* Page Content */
.page-content {
    margin-top: 80px;
    min-height: calc(100vh - 200px);
}

/* Hero Sections */
.hero {
    padding: 5rem 0 4rem;
    background: rgba(45, 45, 45, 0.8);
    backdrop-filter: blur(20px);
    margin-bottom: 3rem;
    border-radius: 24px;
    margin-top: 1rem;
    border: 1px solid rgba(138, 43, 226, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #8a2be2;
    line-height: 1.1;
    font-family: 'Dancing Script', 'Brush Script MT', cursive;
}

.hero-text p {
    font-size: 1.4rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    line-height: 1.7;
    /* font-family: 'Kaushan Script', 'Brush Script MT', cursive; */
    font-family: cursive;
    font-style: italic;
}

/* Images */
.hero-image img {
    width: 80%;
    height: 40%; /* was 450px */ 
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(128, 128, 128, 0.2);
    transition: all 0.4s ease;
    border: 2px solid rgba(128, 128, 128, 0.3);
}

/* .hero-image img:hover {
    transform: scale(1.02) translateY(-8px);
    box-shadow: 0 30px 80px rgba(128, 128, 128, 0.3);
} */

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
    font-size: 1rem;
}

.btn.primary {
    background: #8a2be2;
    color: white;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
}

.btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.6);
    background: #9932cc;
}

.btn.secondary {
    background: rgba(45, 45, 45, 0.8);
    color: #ff9f80;
    border-color: rgba(255, 159, 128, 0.5);
    box-shadow: 0 4px 15px rgba(255, 159, 128, 0.2);
}

.btn.secondary:hover {
    background: rgba(255, 159, 128, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 159, 128, 0.3);
}

/* Footer */
footer {
    background: rgba(30, 30, 30, 0.9);
    color: #b0b0b0;
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    border-top: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 24px 24px 0 0;
    backdrop-filter: blur(20px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #ff9f80;
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: 0.8rem; }

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-section a:hover {
    color: #ff9f80;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 159, 128, 0.2);
    color: #888;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .cta-buttons { flex-direction: column; align-items: center; }
    .btn { width: 200px; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .hero { padding: 2rem 0; }
    .hero-text h1 { font-size: 1.75rem; }
    .hero-text p { font-size: 1rem; }
}

