/* Root Variables */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #9e7e5f;
    --accent-color: #f7f2eb;
    --text-color: #1a1a1a;
    --light-text: #ffffff;
    --border-color: #e5e5e5;
    --font-main: 'EB Garamond', serif;
    --font-secondary: 'Helvetica Neue', Arial, sans-serif;
}

/* General Styles */
html, body {
    font-family: var(--font-secondary);
    color: var(--text-color);
    line-height: 1.5;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body {
    background-color: #ffffff;
}

main {
    flex: 1;
}

.lelabo-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.button {
    display: inline-block;
    padding: 12px 24px;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 2px;
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 400;
    text-align: center;
}

    .button:hover {
        background-color: transparent;
        color: var(--primary-color);
    }

.secondary-button {
    background-color: transparent;
    color: var(--primary-color);
}

    .secondary-button:hover {
        background-color: var(--primary-color);
        color: var(--light-text);
    }

/* Header Styles */
.navbar {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.brand-text h1 {
    font-family: var(--font-main);
    font-size: 1.25rem;
    letter-spacing: 3px;
    margin: 0;
    text-transform: uppercase;
}

.brand-text p {
    font-size: 0.7rem;
    letter-spacing: 1px;
    margin: 0;
    opacity: 0.7;
}

.navbar-nav .nav-link {
    font-size: 0.875rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    color: var(--primary-color);
}

.navbar-toggler {
    border: none;
}

/* Hero Section */
.hero-section {
    height: 80vh;
    background-image: url('/images/landingpagebanner.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    text-align: center;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
    }

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-main);
    font-size: 3rem;
    letter-spacing: 5px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-family: var(--font-main);
    font-size: 2rem;
    text-align: center;
    letter-spacing: 3px;
    margin-bottom: 3rem;
    text-transform: uppercase;
    position: relative;
}

    .section-title::after {
        content: '';
        display: block;
        width: 50px;
        height: 1px;
        background-color: var(--secondary-color);
        margin: 1rem auto 0;
    }

/* How It Works Section */
.how-it-works-section {
    background-color: var(--accent-color);
}

.steps-container {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.step-title {
    font-family: var(--font-main);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Subscription Plans Section */
.subscription-plans-section {
    background-color: #ffffff;
}

.plans-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}

.plan-card {
    border: 1px solid var(--border-color);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

    .plan-card:hover {
        border-color: var(--secondary-color);
    }

.featured-plan {
    border-color: var(--secondary-color);
    background-color: var(--accent-color);
    position: relative;
}

    .featured-plan::before {
        content: 'Popular';
        position: absolute;
        top: 0;
        right: 0;
        background-color: var(--secondary-color);
        color: var(--light-text);
        padding: 0.25rem 1rem;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

.plan-title {
    font-family: var(--font-main);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.plan-price {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

    .plan-price span {
        font-size: 1rem;
        opacity: 0.7;
    }

.plan-description {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
}

    .plan-features li {
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
    }

        .plan-features li i {
            color: var(--secondary-color);
            margin-right: 0.5rem;
        }

.plan-button {
    width: 100%;
}

/* Sample Pools Section */
.sample-pools-section {
    background-color: var(--accent-color);
}

.pools-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    gap: 2rem;
}

.pool-card {
    border: 1px solid var(--border-color);
    padding: 2rem;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

    .pool-card:hover {
        border-color: var(--secondary-color);
    }

.pool-title {
    font-family: var(--font-main);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.pool-details {
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
}

.detail-label {
    color: #666;
}

.pool-button {
    width: 100%;
}

/* Footer Styles */
.footer {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 5rem 0 2rem;
    margin-top: auto;
}

    .footer h5 {
        font-family: var(--font-main);
        font-size: 1rem;
        letter-spacing: 2px;
        margin-bottom: 1.5rem;
        text-transform: uppercase;
    }

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 0.5rem;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-size: 0.875rem;
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: var(--light-text);
        }

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

    .social-icons a {
        font-size: 1.25rem;
    }

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

    .footer-bottom a {
        color: var(--light-text);
        text-decoration: underline;
    }

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .steps-container, .plans-container, .pools-container {
        grid-template-columns: 1fr;
    }

    .step, .plan-card, .pool-card {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Account Pages Styles */
.account-section {
    padding: 3rem 0;
}

.account-card {
    border: 1px solid var(--border-color);
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.account-title {
    font-family: var(--font-main);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    background-color: #ffffff;
    font-family: var(--font-secondary);
    font-size: 1rem;
}

    .form-control:focus {
        border-color: var(--secondary-color);
        outline: none;
    }

.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.form-check-input {
    margin-right: 0.5rem;
}

.form-actions {
    margin-top: 2rem;
}

/* Terms and Conditions Styles */
.terms-container {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    padding: 3rem;
    margin-bottom: 3rem;
}

.terms-updated {
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

.terms-section {
    margin-bottom: 2.5rem;
}

    .terms-section h2 {
        font-family: var(--font-main);
        font-size: 1.5rem;
        margin-bottom: 1rem;
        letter-spacing: 1px;
    }

    .terms-section p, .terms-section ul {
        margin-bottom: 1rem;
        line-height: 1.7;
    }

    .terms-section ul {
        padding-left: 1.5rem;
    }

    .terms-section li {
        margin-bottom: 0.75rem;
    }

@media (max-width: 768px) {
    .terms-container {
        padding: 1.5rem;
    }
}

/* Pool details styles */
.number-ball {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #f8f9fa;
    border-radius: 50%;
    margin: 0 2px;
    font-weight: bold;
}

    .number-ball.small {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

.powerball {
    background-color: #dc3545;
    color: white;
}

/* Bright brown background for regular numbers */
/*.pb-number-select {
    background-color: #f8f9fa;
    color: white;*/ /* Make text readable */
    /*margin: 0 2px;
}*/

/* Darker brown background for Powerball */
/*.pb-powerball-select {
    background-color: #dc3545;
    color: white;
    border: 2px solid #5A2D0C;*/ /* Even darker border */
/*}*/


.table-primary {
    --bs-table-bg: rgba(13, 110, 253, 0.1);
    --bs-table-hover-bg: rgba(13, 110, 253, 0.2);
}

.highlight-animation {
    animation: highlight-pulse 2s ease-in-out infinite;
}








/* Round style for Powerball select input */
.powerball-red-select {
    width: 50px; /* Set width */
    height: 50px; /* Set height */
    border-radius: 50%; /* Make it round */
    text-align: center; /* Center the text */
    background-color: #ff0033; /* Powerball red color */
    color: white; /* White text color */
    font-weight: bold; /* Bold text */
    font-size: 18px; /* Set font size */
    padding: 0; /* Remove padding */
    border: none; /* Remove border */
    margin: auto; /* Center the input inside the column */
}

    .powerball-red-select option {
        text-align: center; /* Ensure the text is centered in the options */
        font-size: 16px; /* Option font size */
    }

/* Round style for regular number select inputs */
.number-gray-select {
    width: 50px; /* Set width */
    height: 50px; /* Set height */
    border-radius: 50%; /* Make it round */
    text-align: center; /* Center the text */
    background-color: #d3d3d3; /* Light gray color for regular numbers */
    color: #333; /* Dark text color */
    font-weight: bold; /* Bold text */
    font-size: 18px; /* Set font size */
    padding: 0; /* Remove padding */
    border: none; /* Remove border */
    margin: auto; /* Center the input inside the column */
}

/* Additional CSS for spacing and column adjustment */
.lottery-numbers .form-group {
    display: flex;
    justify-content: center;
    align-items: center;
}


@keyframes highlight-pulse {
    0% {
        background-color: var(--bs-table-bg);
    }

    50% {
        background-color: rgba(13, 110, 253, 0.25);
    }

    100% {
        background-color: var(--bs-table-bg);
    }
}
/* Add this animation definition to your site.css file */
@keyframes highlight-pulse {
    0% {
        background-color: rgba(13, 110, 253, 0.1);
    }

    50% {
        background-color: rgba(13, 110, 253, 0.25);
    }

    100% {
        background-color: rgba(13, 110, 253, 0.1);
    }
}