/* --- General and Layout Styles --- */
:root {
    /* Define a color palette for a modern, inviting look */
    --primary-color: #6a11cb;
    --secondary-color: #2575fc;
    --text-color: #e0e0e0;
    --heading-color: #ffffff;
    --background-start: #1a1a2e;
    --background-end: #16213e;
}

/* Apply a global box-sizing rule for consistent layout behavior */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Base body styles for font, background, and centering content */
.landing-page {
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 2rem 1rem;
    color: var(--text-color);
    background: linear-gradient(135deg, var(--background-start) 0%, var(--background-end) 100%);
    text-align: center;
}

/* Container for the main landing content */
.landing-content {
    max-width: 600px;
    padding: 2rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.05); /* Subtle transparent background for a modern effect */
    backdrop-filter: blur(10px); /* Glassmorphism effect */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    animation: fadeIn 1s ease-in-out;
}

/* Fade-in animation for a smooth entrance */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Typography Styles --- */
.landing-title {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--heading-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.landing-tagline {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 2rem;
    font-weight: 300;
    opacity: 0.8;
}

/* --- Button Styling --- */
.get-started-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.get-started-btn:hover {
    transform: translateY(-5px); /* Subtle lift on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.get-started-btn:active {
    transform: translateY(0);
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .landing-page {
        /* Reduce padding for smaller screens */
        padding: 1rem;
    }

    .landing-content {
        padding: 1.5rem;
    }
}
