:root {
    --bg-color: #FAF9F7;
    --primary-color: #D2C7BE;
    --secondary-color: #B0B0B0;
    --accent-color: #E0AFA0;
    --text-color: #2E2E2E;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Jost', sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    
    --border-radius-sm: 3px;
    --border-radius-md: 6px;
    --border-radius-lg: 12px;
    
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.08);
    
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.8s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

h1 {
    font-size: 2.8rem;
    font-weight: 300;
    letter-spacing: 0.02em;
}

h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: var(--space-sm);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

p {
    margin-bottom: var(--space-sm);
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-sm);
}

ul {
    list-style-type: none;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.btn.accent {
    background-color: var(--accent-color);
    color: white;
}

.btn.accent:hover {
    background-color: #D69D8F;
}

.site-header {
    padding: var(--space-sm) 0;
    width: 100%;
    z-index: 100;
    transition: all var(--transition-medium);
    background-color: rgba(250, 249, 247, 0.9);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 101;
    color: var(--text-color);
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.main-nav a {
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.5rem 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: width var(--transition-fast);
}

.main-nav a:hover::after {
    width: 100%;
}

.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../gallery/bg-image-1.jpg') no-repeat center center/cover;
}





.hero h1 {
    font-size: 3.5rem;
    margin-bottom: var(--space-sm);
}

.subtitle {
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
   
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    padding: var(--space-xl) 0;
}

.section-content {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin: var(--space-md) 0;
}

.section-content.reverse {
    flex-direction: row-reverse;
}

.text-content, .image-content {
    flex: 1;
}

.declutter-space, .natural-clean {
    background-color: rgba(210, 199, 190, 0.1);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.product-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
}

.product-card h3, .product-card p {
    padding: 0 var(--space-sm);
}

.product-card h3 {
    margin-top: var(--space-sm);
}

.price {
    font-weight: 500;
    color: var(--accent-color);
    font-size: 1.2rem;
    margin: var(--space-sm) 0;
}

.product-card .btn {
    margin: var(--space-sm);
    display: block;
    text-align: center;
}

.contact-teaser {
    background-color: var(--primary-color);
    text-align: center;
    padding: var(--space-xl) 0;
}

.contact-teaser h2 {
    color: var(--bg-color);
}

.contact-teaser p {
    max-width: 600px;
    margin: 0 auto var(--space-md);
}

.site-footer {
    background-color: var(--text-color);
    color: var(--bg-color);
    padding: var(--space-md) 0;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-nav ul {
    display: flex;
    gap: var(--space-md);
}

.footer-nav a {
    color: var(--bg-color);
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.footer-nav a:hover {
    opacity: 1;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(46, 46, 46, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    padding: var(--space-sm);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform var(--transition-medium);
}

.cookie-consent.active {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: 0;
    margin-right: var(--space-md);
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--accent-color);
    z-index: 1001;
    transition: width var(--transition-fast);
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: var(--space-md);
}

label {
    display: block;
    margin-bottom: var(--space-xs);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

input, textarea {
    width: 100%;
    padding: var(--space-sm);
    border: 1px solid var(--secondary-color);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: white;
}

textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xs);
}

.checkbox-group input {
    width: auto;
    margin-top: 0.4rem;
}

.contact-info {
    margin-bottom: var(--space-lg);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    flex-direction: column;
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.map-container {
    width: 100%;
    height: 400px;
    margin-top: var(--space-lg);
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.error-page h1 {
    font-size: 6rem;
    margin-bottom: var(--space-xs);
}

.thank-you {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.text-only {
    padding: var(--space-lg) var(--space-md);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.text-only h1 {
    margin-bottom: var(--space-md);
}

.text-only h2 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.text-only p, .text-only ul {
    margin-bottom: var(--space-md);
}

.text-only ul {
    padding-left: var(--space-md);
    list-style-type: disc;
}

.text-only li {
    margin-bottom: var(--space-xs);
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.4rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .section-content {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .section-content.reverse {
        flex-direction: column;
    }
    
    .hero {
        height: 70vh;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    section {
        padding: var(--space-lg) 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
    
    .cookie-content p {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: 100%;
        width: 250px;
        height: 100vh;
        background-color: var(--bg-color);
        padding: 80px var(--space-md) var(--space-md);
        z-index: 100;
        transition: right var(--transition-medium);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero h1 {
        font-size: 2.4rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}



@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .hero {
        height: 60vh;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    section {
        padding: var(--space-md) 0;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-nav ul {
        flex-direction: column;
        gap: var(--space-xs);
    }
}