/* Mauwell - Art Deco Soft Luxe Styling */

:root {
    --primary-beige: #e8dcc8;
    --champagne: #dcc8b0;
    --soft-sand: #d4af8a;
    --pearl-grey: #a89a8f;
    --deep-emerald: #2a5a4a;
    --muted-aubergine: #6b4c6b;
    --brushed-gold: #d4af8a;
    --off-white: #faf8f3;
    --light-tint: #f5f1ec;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: var(--off-white);
    color: #333;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #2a2a2a;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

h1 {
    font-size: 3rem;
    font-weight: 300;
    text-transform: none;
}

h2 {
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--deep-emerald);
}

h3 {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--muted-aubergine);
}

h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2a2a2a;
}

p {
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1rem;
}

a {
    color: var(--deep-emerald);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--muted-aubergine);
    text-decoration: underline;
}

/* Navigation */
.navbar {
    background-color: var(--off-white) !important;
    border-bottom: 1px solid #e0d5c8;
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--deep-emerald) !important;
    text-transform: uppercase;
}

.navbar-light .navbar-nav .nav-link {
    color: #333 !important;
    font-size: 0.95rem;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--deep-emerald) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(42, 90, 74, 0.35);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 600px;
}

.hero-content h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-content p {
    color: #f0f0f0;
    font-size: 1.3rem;
    font-weight: 300;
}

/* Arch Headers */
.arch-header {
    position: relative;
    margin-bottom: 2rem;
}

.arch-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.accent-line {
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, var(--brushed-gold), transparent);
    margin-top: 0.75rem;
}

.arch-header.text-center .accent-line {
    margin-left: auto;
    margin-right: auto;
}

/* Content Sections */
.content-section {
    padding: 5rem 0;
}

.content-section.bg-light-tint {
    background-color: var(--light-tint);
}

/* Section Images */
.section-image-left,
.section-image-right {
    overflow: hidden;
    border-radius: 0;
    margin-bottom: 2rem;
}

.section-image-left img,
.section-image-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border: 1px solid #d0c5ba;
}

/* Feature Lists */
.feature-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.feature-list li {
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    position: relative;
    font-size: 0.95rem;
}

.feature-list li:before {
    content: "◆";
    position: absolute;
    left: 0;
    color: var(--brushed-gold);
    font-size: 0.8rem;
}

/* Format Cards */
.format-card {
    background-color: var(--off-white);
    border: 1px solid #e0d5c8;
    border-radius: 0;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.format-card:hover {
    box-shadow: 0 4px 12px rgba(42, 90, 74, 0.1);
    border-color: var(--brushed-gold);
}

.format-card h3 {
    color: var(--deep-emerald);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.format-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Composition Example */
.composition-example {
    background-color: #f9f7f3;
    border-left: 3px solid var(--brushed-gold);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.composition-example h4 {
    color: var(--muted-aubergine);
    margin-top: 0;
    margin-bottom: 1rem;
}

.composition-example ul {
    list-style: none;
    padding-left: 0;
}

.composition-example li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    font-size: 0.9rem;
}

.composition-example li:before {
    content: "–";
    position: absolute;
    left: 0;
    color: var(--brushed-gold);
}

/* Product Cards */
.product-card {
    background-color: var(--off-white);
    border: 1px solid #e0d5c8;
    padding: 2.5rem;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 6px 20px rgba(42, 90, 74, 0.08);
    border-color: var(--brushed-gold);
}

.product-card h3 {
    color: var(--deep-emerald);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.product-audience,
.product-focus,
.product-format {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.composition-overview {
    background-color: #f9f7f3;
    padding: 1rem;
    margin: 1.5rem 0;
    border-left: 3px solid var(--brushed-gold);
}

.composition-overview p {
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.composition-overview ul {
    list-style: none;
    padding-left: 1rem;
    margin: 0;
}

.composition-overview li {
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    position: relative;
    padding-left: 1rem;
}

.composition-overview li:before {
    content: "–";
    position: absolute;
    left: 0;
    color: var(--brushed-gold);
}

.product-image {
    border: 1px solid #d0c5ba;
    margin-bottom: 1rem;
}

.details-anchor {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--brushed-gold);
    color: var(--deep-emerald);
    background-color: transparent;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.details-anchor:hover {
    background-color: var(--brushed-gold);
    color: white;
}

/* Principle Cards */
.principle-card {
    background-color: #f9f7f3;
    padding: 2rem;
    border-left: 4px solid var(--brushed-gold);
    margin-bottom: 1.5rem;
}

.principle-card h4 {
    color: var(--muted-aubergine);
    margin-top: 0;
    margin-bottom: 1rem;
}

/* Styled Lists */
.styled-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.styled-list li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
}

.styled-list li:before {
    content: "◆";
    position: absolute;
    left: 0;
    color: var(--brushed-gold);
    font-size: 0.8rem;
}

/* Sidebar */
.sidebar-section {
    position: sticky;
    top: 100px;
}

.sidebar-box {
    background-color: #f9f7f3;
    padding: 1.5rem;
    border: 1px solid #e0d5c8;
    margin-top: 1rem;
}

.sidebar-box h5 {
    color: var(--deep-emerald);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.sidebar-box ul {
    list-style: none;
    padding-left: 0;
}

.sidebar-box li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    font-size: 0.9rem;
}

.sidebar-box li:before {
    content: "–";
    position: absolute;
    left: 0;
    color: var(--brushed-gold);
}

/* Contact Form */
.contact-info {
    background-color: #f9f7f3;
    padding: 2rem;
    border: 1px solid #e0d5c8;
    margin-bottom: 2rem;
}

.contact-info h4 {
    color: var(--deep-emerald);
    margin-top: 0;
    margin-bottom: 1rem;
}

.contact-info a {
    color: var(--deep-emerald);
}

.contact-form {
    background-color: var(--off-white);
    padding: 2rem;
    border: 1px solid #e0d5c8;
}

.contact-form h4 {
    color: var(--deep-emerald);
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-control {
    border: 1px solid #d0c5ba;
    border-radius: 0;
    padding: 0.75rem;
    font-size: 0.95rem;
    background-color: #fafbf9;
}

.form-control:focus {
    border-color: var(--brushed-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 138, 0.25);
}

.custom-control-label {
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: var(--brushed-gold);
    border-color: var(--brushed-gold);
}

/* Buttons */
.btn {
    border-radius: 0;
    padding: 0.7rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.btn-dark {
    background-color: var(--deep-emerald);
    border-color: var(--deep-emerald);
    color: white;
}

.btn-dark:hover {
    background-color: var(--muted-aubergine);
    border-color: var(--muted-aubergine);
    color: white;
}

.btn-outline-dark {
    color: var(--deep-emerald);
    border-color: var(--deep-emerald);
    background-color: transparent;
}

.btn-outline-dark:hover {
    background-color: var(--deep-emerald);
    border-color: var(--deep-emerald);
    color: white;
}

.btn-outline-light {
    color: white;
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-light {
    background-color: white;
    border-color: white;
    color: var(--deep-emerald);
}

.btn-light:hover {
    background-color: #f5f1ec;
    border-color: #f5f1ec;
}

/* Footer */
.footer {
    background-color: #2a2a2a;
    color: #d0d0d0;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
    border-top: 2px solid var(--brushed-gold);
}

.footer h5 {
    color: var(--brushed-gold);
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.footer p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer a {
    color: #d0d0d0;
}

.footer a:hover {
    color: var(--brushed-gold);
}

.footer-links {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer hr {
    background-color: #444;
    margin: 2rem 0 1rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: white;
    padding: 1.5rem 0;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
    display: block;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
}

/* Alerts */
.alert {
    border-radius: 0;
    font-size: 0.95rem;
}

.alert-light {
    background-color: #faf8f3;
    border-color: #e0d5c8;
    color: #333;
}

.alert strong {
    color: var(--deep-emerald);
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .content-section {
        padding: 3rem 0;
    }

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

    .hero-content p {
        font-size: 1rem;
    }

    .product-card {
        padding: 1.5rem;
    }

    .navbar-light .navbar-nav .nav-link {
        margin-left: 0;
        margin-bottom: 0.5rem;
    }

    .cookie-banner {
        flex-direction: column;
    }

    .cookie-banner .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-banner div {
        margin-top: 1rem;
        width: 100%;
    }

    .sidebar-section {
        position: static;
        margin-top: 2rem;
    }

    .format-card {
        padding: 1rem;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
