/* --- Global Styles for Home Page --- */
:root {
    --recilens-bg-dark: #0a0a1a;
    --recilens-text-light: #e0e0ff;
    --recilens-text-medium: #a0a0c0;
    --recilens-primary-blue: #4a69ff;
    --recilens-glow-color: rgba(74, 105, 255, 0.5);
    --recilens-font: 'Inter', sans-serif;
}

body {
    background-color: var(--recilens-bg-dark);
    color: var(--recilens-text-light);
    font-family: var(--recilens-font);
    margin: 0;
}

main {
    padding-top: 90px; /* Space for the fixed navbar */
}

/* --- Hero Section Styles --- */
.recilens-hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: calc(100vh - 90px);
    padding: 2rem 5%;
    overflow: hidden;
}

.recilens-hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
}

.recilens-hero-headline {
    font-size: clamp(2.5rem, 5vw, 4rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
    letter-spacing: -1.5px;
}

.recilens-hero-subheadline {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 500px;
    margin: 0 0 30px 0;
    color: var(--recilens-text-medium);
}

.recilens-hero-cta-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.recilens-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.recilens-btn-primary {
    background-color: var(--recilens-primary-blue);
    color: #fff;
    box-shadow: 0 0 20px var(--recilens-glow-color);
}
.recilens-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--recilens-glow-color);
}

.recilens-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.recilens-rating span {
    font-weight: 500;
}
.recilens-rating .stars {
    color: #fbbc05; /* Yellow for stars */
}

.recilens-hero-visual {
    position: relative;
    z-index: 2;
}

.recilens-hero-visual img {
    max-width: 550px;
    width: 100%;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .recilens-hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 4rem;
    }
    .recilens-hero-subheadline {
        margin-left: auto;
        margin-right: auto;
    }
    .recilens-hero-cta-buttons {
        justify-content: center;
    }
    .recilens-hero-visual {
        margin-top: 3rem;
    }
    .recilens-hero-visual img {
        max-width: 450px;
    }
}

@media (max-width: 480px) {
    .recilens-hero-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}





