/*
Theme Name: Limoon Modern
Theme URI: https://limoon4silkyskin.nl
Author: Antigravity
Author URI: https://google.com
Description: Version 2.0 - High-end, uniquely branded theme for Limoon Waxsalon, featuring Lime Green/Chocolate Brown palette and circular aesthetics.
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: limoon-modern
*/

:root {
    /* Brand Palette v2.0 - Lime & Chocolate */
    --primary-color: #A8D600;
    /* Vibrant Lime Green */
    --secondary-color: #4B3621;
    /* Dark Chocolate Brown */
    --accent-color: #799500;
    /* Olive Green Accent */
    --bg-cream: #F9F7F2;
    /* Light Cream Background */
    --text-main: #2C1E12;
    /* Near-Black Brown */
    --text-light: #5E4B3C;

    /* Design Tokens */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 20px;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(168, 214, 0, 0.2);
}

/* Reset & Base */
*,
*::before,
*::after {
    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,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    line-height: 1.2;
    font-weight: 700;
}

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

/* Premium Navigation v2.0 */
.site-header {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 2px solid var(--primary-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.main-navigation a {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
    padding: 5px 0;
}

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

/* Circular Mask Aesthetics */
.circular-mask {
    border-radius: 50% / 40%;
    /* Oval-ish circular mask matching brand feel */
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 8px solid #fff;
}

/* Hero Section v2.0 */
.hero {
    position: relative;
    padding: 120px 0;
    background: #fff;
    text-align: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/hero-v2.jpg') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--secondary-color);
    margin-bottom: 20px;
}

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

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

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

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

.feature-card:hover {
    transform: translateY(-10px);
    background: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 30px 60px rgba(168, 214, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    display: inline-block;
    color: var(--primary-color);
}

/* Categorized Price List v2.0 */
.price-list-section {
    padding: 100px 0;
}

.category-title {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 30px;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 20px 40px;
    margin-bottom: 60px;
}

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

    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 100px 0;
    }

    .main-navigation {
        display: none;
    }

    .site-logo img {
        height: 60px;
    }
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed rgba(75, 54, 33, 0.2);
    transition: all 0.3s ease;
}

.price-item:hover {
    border-bottom-color: var(--primary-color);
    padding-left: 10px;
}

.price-name {
    font-weight: 600;
    color: var(--secondary-color);
}

.price-cost {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Footer v2.0 */
.site-footer {
    background: var(--secondary-color);
    color: #fff;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}

.footer-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-info p {
    margin-bottom: 10px;
    opacity: 0.9;
    font-size: 0.95rem;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s var(--transition);
}

.btn:hover {
    background: #fff;
    transform: scale(1.05);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
}
}
}