/*
Theme Name: Limoon Modern
Theme URI: https://limoon4silkyskin.nl
Author: Antigravity
Author URI: https://google.com
Description: Version 2.2 - High-end branding for Kayorama (formerly Limoon), featuring a clean, white header and premium typography.
Version: 2.2.0
License: GNU General Public License v2 or later
Text Domain: limoon-modern
*/

:root {
    --primary-color: #A8D600;
    --secondary-color: #4B3621;
    --accent-color: #799500;
    --bg-cream: #F9F7F2;
    --text-main: #2C1E12;
    --text-light: #5E4B3C;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 20px;
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-weight: 700;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Clean Header V2.2 - As Preferred by User */
.site-header {
    background: #fff;
    border-bottom: 2px solid var(--primary-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo img {
    height: 60px;
    transition: transform 0.3s var(--transition);
}

.site-logo img:hover {
    transform: scale(1.05);
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-navigation a {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: var(--primary-color);
}

/* Features Grid */
.section-features {
    padding: 80px 0;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media (max-width: 1000px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: var(--bg-cream);
    padding: 50px 40px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform 0.3s var(--transition);
    border: 1px solid rgba(168, 214, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    display: block;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 0;
    background: #fff;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 35px;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s var(--transition);
    font-family: var(--font-heading);
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    border: none;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Price List Styling */
.price-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.price-category {
    background: #fff;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    border: 1px solid #efefef;
    overflow: hidden;
}

.price-category-header {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
}

.price-category-header h2 {
    margin: 0;
    font-size: 1.3rem;
}

.price-grid {
    padding: 0 30px 20px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
}

.price-item:last-child {
    border-bottom: none;
}

.price-cost {
    font-weight: 700;
    color: var(--primary-color);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-navigation {
        display: none;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
}