/* 
* Luminettra.shop - Main Stylesheet
* Created: May 2025
*/

/* ===== GLOBAL STYLES ===== */
:root {
    /* Color Palette */
    --lemon-yellow: #cddc39;
    --olive-green: #7cb342;
    --cream-white: #f9f7f3;
    --warm-brown: #8d6e63;
    --light-brown: #a1887f;
    --dark-brown: #5d4037;
    --accent-orange: #ff9800;
    --dark-gray: #424242;
    --light-gray: #e0e0e0;
    
    /* Font Settings */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --font-quotes: 'Georgia', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-gray);
    background-color: var(--cream-white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: var(--spacing-xs);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--lemon-yellow);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--light-brown);
    max-width: 600px;
    margin: var(--spacing-sm) auto 0;
}

section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

/* ===== BUTTONS ===== */
.btn-primary, 
.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--olive-green);
    color: white;
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.3);
}

.btn-primary:hover {
    background: var(--lemon-yellow);
    color: var(--dark-brown);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(124, 179, 66, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--olive-green);
    border: 2px solid var(--olive-green);
}

.btn-secondary:hover {
    background: var(--olive-green);
    color: white;
    transform: translateY(-3px);
}

/* ===== HEADER & NAVIGATION ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(249, 247, 243, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 54px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-menu li a {
    font-weight: 500;
    position: relative;
}

.nav-menu li a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lemon-yellow);
    transition: width 0.3s ease;
}

.nav-menu li a:not(.btn-primary):hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 20px;
}

.mobile-menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--olive-green);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 0;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 8px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 16px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
}

/* ===== HERO SECTION ===== */
#hero {
    padding-top: calc(80px + var(--spacing-xl));
    padding-bottom: var(--spacing-xl);
    background: linear-gradient(135deg, #f9f7f3 0%, #e8f5e9 100%);
    overflow: hidden;
}

.hero-content {
    max-width: 550px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-family: var(--font-secondary);
    color: var(--dark-brown);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    color: var(--light-brown);
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.hero-image {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-40%);
    width: 55%;
    z-index: 1;
}

.hero-image img {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

.hero-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 150px;
    background-image: url("images/bg.png");
    background-size: cover;
    background-position: center;
    z-index: 2;
}

/* ===== BENEFITS SECTION ===== */
#benefits {
    background-color: var(--cream-white);
    position: relative;
    z-index: 3;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.benefit-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefit-image {
    height: 220px;
    overflow: hidden;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.benefit-card:hover .benefit-image img {
    transform: scale(1.1);
}

.benefit-card h3 {
    padding: var(--spacing-sm) var(--spacing-sm) 0.5rem;
    font-family: var(--font-secondary);
    color: var(--dark-brown);
    font-size: 1.4rem;
}

.benefit-card p {
    padding: 0 var(--spacing-sm) var(--spacing-sm);
    color: var(--dark-gray);
}

/* ===== PROCESS SECTION ===== */
#process {
    background-color: #f5f5f5;
    position: relative;
}

#process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/pro.png");
    opacity: 0.3;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--olive-green);
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    padding: var(--spacing-md) 0;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: var(--olive-green);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: var(--spacing-md);
    z-index: 5;
    box-shadow: 0 0 0 5px rgba(124, 179, 66, 0.2);
}

.timeline-content {
    background: white;
    border-radius: 15px;
    padding: var(--spacing-md);
    width: 80%;
    max-width: 600px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    font-family: var(--font-secondary);
    color: var(--dark-brown);
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
}

.timeline-content p {
    margin-bottom: var(--spacing-sm);
}

.timeline-content img {
    border-radius: 10px;
    height: 200px;
    width: 100%;
    object-fit: cover;
}

/* ===== PLANS SECTION ===== */
#plans {
    background: linear-gradient(135deg, #f9f7f3 0%, #fff8e1 100%);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
    gap: var(--spacing-md);
}

.plan-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    padding: var(--spacing-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.plan-badge {
    position: absolute;
    top: 0;
    right: var(--spacing-md);
    background: var(--accent-orange);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0 0 8px 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.plan-header h3 {
    font-family: var(--font-secondary);
    color: var(--dark-brown);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.price {
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--olive-green);
}

.period {
    color: var(--light-brown);
    margin-left: 5px;
}

.plan-features {
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.plan-features ul li {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--light-gray);
    position: relative;
    padding-left: 1.5rem;
}

.plan-features ul li:last-child {
    border-bottom: none;
}

.plan-features ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--olive-green);
    font-weight: bold;
}

.plan-mentor {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm);
    background: #f8f8f8;
    border-radius: 10px;
}

.plan-mentor img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: var(--spacing-sm);
}

.mentor-info h4 {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.mentor-info p {
    color: var(--light-brown);
    font-size: 0.9rem;
}

.plan-card .btn-secondary,
.plan-card .btn-primary {
    margin-top: auto;
    width: 100%;
}

.plan-card.featured {
    border-color: var(--olive-green);
    transform: scale(1.05);
    z-index: 10;
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

/* ===== TESTIMONIALS SECTION ===== */
#testimonials {
    background-color: #fcf7ef;
    position: relative;
}

#testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/test.png");
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: var(--spacing-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: var(--font-quotes);
    font-size: 5rem;
    color: rgba(205, 220, 57, 0.2);
    line-height: 0;
}

blockquote {
    font-family: var(--font-quotes);
    font-style: italic;
    padding-top: 2rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: var(--spacing-sm);
}

.author-info h4 {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.author-info p {
    color: var(--light-brown);
    font-size: 0.9rem;
}

/* ===== NEWSLETTER SECTION ===== */
#newsletter {
    background: linear-gradient(to right, rgba(124, 179, 66, 0.1), rgba(205, 220, 57, 0.1)), url('images/news.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: var(--spacing-lg);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.newsletter-content h2 {
    font-family: var(--font-secondary);
    color: var(--dark-brown);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.newsletter-content p {
    color: var(--light-brown);
    margin-bottom: var(--spacing-md);
}

.newsletter-form .form-group {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--light-gray);
    border-right: none;
    border-radius: 30px 0 0 30px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    border-color: var(--olive-green);
}

.newsletter-form button {
    border-radius: 0 30px 30px 0;
    padding: 0 2rem;
}

.form-note {
    font-size: 0.8rem;
    color: var(--light-brown);
    margin-top: var(--spacing-sm);
}

/* ===== CONTACT SECTION ===== */
#contact {
    background-color: #e8f5e9;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.contact-form-container {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-container .section-header {
    text-align: left;
    margin-bottom: var(--spacing-md);
}

.contact-form-container .section-header h2::after {
    left: 0;
    transform: none;
}

.contact-form .form-group {
    margin-bottom: var(--spacing-md);
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--olive-green);
}

.contact-map-container {
    display: flex;
    flex-direction: column;
}

.contact-info {
    background: white;
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: var(--spacing-md);
}

.contact-info h3 {
    font-family: var(--font-secondary);
    color: var(--dark-brown);
    margin-bottom: var(--spacing-sm);
}

.contact-info p {
    margin-bottom: var(--spacing-sm);
}

.map-container {
    flex-grow: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* ===== FOOTER ===== */
footer {
    background-color: #2e2e2e;
    color: white;
    padding: var(--spacing-lg) 0 var(--spacing-sm);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-logo img {
    margin-bottom: var(--spacing-sm);
    filter: brightness(0) invert(1);
}

.footer-logo p {
    opacity: 0.8;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--lemon-yellow);
}

.footer-links ul {
    padding-left: 0;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--lemon-yellow);
}

.footer-contact p {
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 0.9rem;
}

/* ===== AOS ANIMATIONS ===== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-image {
        width: 45%;
        right: 0;
    }
}

@media (max-width: 992px) {
    :root {
        --spacing-xl: 5rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        max-width: 500px;
        margin: var(--spacing-md) auto 0;
    }
    
    #hero .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        align-items: flex-start;
    }
    
    .timeline-number {
        margin-left: 30px;
        margin-right: var(--spacing-md);
    }
    
    .timeline-content {
        width: calc(100% - 90px);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--cream-white);
        flex-direction: column;
        justify-content: center;
        padding: var(--spacing-md);
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .benefit-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .plan-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 30px;
        border-right: 2px solid var(--light-gray);
        margin-bottom: var(--spacing-sm);
    }
    
    .newsletter-form button {
        border-radius: 30px;
    }
    
    .timeline-content {
        padding: var(--spacing-sm);
    }
}

@media (max-width: 576px) {
    :root {
        --spacing-lg: 2.5rem;
        --spacing-xl: 3.5rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo img {
        margin: 0 auto var(--spacing-sm);
    }
    
    .footer-links h3::after,
    .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}