/* 
    Easy Riser - Design System
    Theme: Bold, Energetic, Premium
*/

:root {
    /* Color Palette */
    --primary: #008080;
    /* Sunrise Teal */
    --primary-hover: #006666;
    --accent: #c8920a;
    /* Dawn Gold */
    --accent-bright: #FFD700;

    --bg-dark: #fbf9f1;
    /* Cream background */
    --bg-secondary: #f1ede1;
    --text-main: #1e293b;
    --text-muted: #475569;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Roboto', sans-serif;

    /* Spacing & Layout */
    --container-max: 1200px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    /* Effects */
    --shadow-glow: 0 0 30px rgba(0, 128, 128, 0.35);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* === Reset & Base === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.align-center {
    text-align: center;
}

.align-left {
    text-align: left;
}

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: var(--radius-md);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 128, 128, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    background: linear-gradient(135deg, #006666, var(--primary));
}

.btn-outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: rgba(0, 128, 128, 0.05);
    border-color: var(--primary-hover);
    color: var(--primary-hover);
}

.w-100 {
    width: 100%;
}

/* Animations */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 128, 128, 0.5);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(0, 128, 128, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 128, 128, 0);
    }
}

.cta-pulse {
    animation: pulseGlow 2s infinite;
}

/* === Navbar === */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 100;
    background: #1a1d20;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: #ffffff;
}

.logo-easy {
    color: #c8920a;
}

.product-img {
    max-width: 380px;
    width: 100%;
    border-radius: 16px;
    filter: drop-shadow(0 20px 40px rgba(0, 128, 128, 0.18));
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.product-img:hover {
    transform: scale(1.03) translateY(-6px);
    filter: drop-shadow(0 30px 50px rgba(0, 128, 128, 0.25));
}


.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a:not(.btn) {
    font-weight: 600;
    color: #f8fafc;
    transition: var(--transition);
}

.nav-links a:not(.btn):hover {
    color: var(--accent-bright);
}

/* === Ingredients Grid === */
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
}

/* === Hero Section === */
.hero {
    position: relative;
    padding: 10rem 0 6rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 128, 128, 0.2) 0%, rgba(251, 249, 241, 0) 70%);
    z-index: 1;
}

.mockup-placeholder {
    width: 300px;
    height: 450px;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0));
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
    backdrop-filter: blur(5px);
    z-index: 2;
    transform: perspective(1000px) rotateY(-15deg);
    transition: var(--transition);
}

.mockup-placeholder:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
    border-color: rgba(0, 128, 128, 0.3);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    line-height: 0;
}

/* === Benefits Section === */
.benefits-section {
    background-color: var(--bg-secondary);
    padding: 6rem 0;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: var(--bg-dark);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 128, 128, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.icon-wrapper {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: rgba(0, 128, 128, 0.1);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-muted);
}

/* === Shop Section === */
.shop-section {
    padding: 6rem 0;
}

.shop-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0));
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-lg);
    padding: 4rem;
}

.product-display h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 2rem;
}

.discount {
    font-size: 1rem;
    background: rgba(0, 128, 128, 0.1);
    color: var(--primary);
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
    vertical-align: middle;
    margin-left: 1rem;
}

.features-list {
    margin-bottom: 2rem;
}

.features-list li {
    margin-bottom: 0.8rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.checkout-form-container {
    background: var(--bg-dark);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.checkout-form-container h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 128, 128, 0.1);
}

/* === Footer === */
.footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: var(--bg-dark);
}

.footer p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* === Responsive Layout === */
@media (max-width: 900px) {

    .hero-content,
    .shop-wrapper,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero {
        padding-top: 8rem;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-cta {
        flex-direction: column;
    }

    .mockup-placeholder {
        margin: 0 auto;
    }
}