/* Modern Landing Page Styles - Fresh Color Scheme */
:root {
    --primary: #FF6B6B;
    --primary-dark: #E85D5D;
    --secondary: #4ECDC4;
    --secondary-dark: #45B7AF;
    --accent: #FFE66D;
    --dark: #2C3E50;
    --light: #F7F9FC;
    --text: #34495E;
}

body {
    background: linear-gradient(135deg, #F7F9FC 0%, #E8EFF5 100%);
    min-height: 100vh;
}

header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin:5px;
    max-width:calc(100%-10px);
}

.tagline {
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 500;
}

.login-link {
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    width: 100% !important;
}

.login-link:first-of-type {
    color: var(--secondary);
    border-color: var(--secondary);
}

.login-link:first-of-type:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-2px);
}

#hero {
    padding: .75rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-on-blue {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-on-blue h1 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-on-blue p {
    font-size: 1.3rem;
    color: var(--text);
    font-weight: 400;
}

.free-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
    margin-top: 1rem;
    animation: pulse 2s infinite;
}

.free-badge i {
    margin-right: 0.5rem;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.roulette-container {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(255, 107, 107, 0.12);
    text-align: center;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(78, 205, 196, 0.1);
}

.roulette-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 107, 107, 0.18);
    border-color: rgba(78, 205, 196, 0.3);
}

#display-area h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

#display-area p {
    font-size: 1.1rem;
    color: var(--text);
}

#spin-button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.35);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

#spin-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

#spin-button:hover::before {
    left: 100%;
}

#spin-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 107, 107, 0.45);
}

#spin-button:active {
    transform: translateY(0);
}

.plan-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
    border: 2px solid rgba(78, 205, 196, 0.1);
}

.plan-card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.plan-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary);
    margin: 2rem 0 1rem;
}

.front-page-buttons-action {
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 1rem 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.front-page-buttons-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.front-page-buttons-action:hover::before {
    left: 100%;
}

.front-page-buttons-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.front-page-buttons-action:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color: white;
}

.btn-success {
    background: linear-gradient(135deg, #56CCF2 0%, #2F80ED 100%);
    color: white;
}

.btn-success:hover {
    background: linear-gradient(135deg, #2F80ED 0%, #56CCF2 100%);
    color: white;
}

.btn-secondary {
    background: linear-gradient(135deg, #F093FB 0%, #F5576C 100%);
    color: white;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #F5576C 0%, #F093FB 100%);
    color: white;
}

.btn-success:hover {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 100%);
}

.btn-secondary {
    background: linear-gradient(135deg, #5A6C7D 0%, #34495E 100%);
    color: white;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #34495E 0%, #2C3E50 100%);
}

footer {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem 1rem;
    margin-top: 4rem;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.05);
}

footer p {
    color: var(--text);
    font-weight: 500;
}

.hidden {
    display: none;
}

/* Modern checkbox styling */
#optimize-ingredients {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--secondary);
}

label {
    color: var(--text);
    font-weight: 500;
}

/* Menu block styling for cards */
.menu-block {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(78, 205, 196, 0.05) 100%);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(78, 205, 196, 0.2);
    transition: all 0.3s ease;
}

.menu-block:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.15);
}

/* How It Works Section */
.how-it-works {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    margin: 1rem 0;
    border-radius: 20px;
}

.how-it-works h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: .5rem;
}

.step-card {
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-icon {
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.step-card:hover .step-icon {
    color: var(--secondary);
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text);
    font-size: 1rem;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.08) 0%, rgba(255, 107, 107, 0.08) 100%);
    border-radius: 20px;
    margin: 2rem 0;
}

.about-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.about-section p {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(78, 205, 196, 0.2);
}

.contact-card i {
    color: var(--secondary);
}

.contact-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
}

.contact-email {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: var(--secondary);
    text-decoration: underline;
}

/* Social Proof Stats */
.social-proof-stats {
    padding: 2rem 0;
    margin: 2rem 0;
}

.stat-item {
    padding: 0;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
    border-radius: 15px;
    display: inline-block;
    min-width: 300px;
}

.stat-item i {
    color: var(--secondary);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0.5rem 0;
}

.stat-item p {
    color: var(--text);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}
