﻿/* SeifenLiebe Custom Styles */

:root {
    --primary-color: #9D7E6F;
    --secondary-color: #C8B5A0;
    --accent-color: #9B7EBD;
    --dark-brown: #8B6F5B;
    --light-bg: #FFF8F0;
    --text-dark: #4A3F35;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 17px;
}

/* Cookie Banner */
#cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(77, 59, 48, 0.97);
    color: #fff;
    padding: 1.5rem 2rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
}

#cookieBanner.show {
    display: block;
}

#cookieBanner p {
    margin: 0 0 1rem 0;
    font-size: 16px;
    line-height: 1.6;
}

#cookieBanner button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s ease;
}

#cookieBanner button:hover {
    background: #8B6FAD;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-brown));
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--light-bg) !important;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 50px;
    margin-right: 12px;
}

.navbar-nav .nav-link {
    color: rgba(255, 248, 240, 0.9) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    font-size: 16px;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(157, 126, 111, 0.85), rgba(200, 181, 160, 0.85)),
                url('../images/hero-soap.jpg') center/cover no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.btn-primary-custom {
    background: var(--accent-color);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(155, 126, 189, 0.4);
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background: #8B6FAD;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(155, 126, 189, 0.5);
    color: white;
}

/* Section Styles */
.section-padding {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.8rem;
    font-weight: bold;
    color: var(--dark-brown);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* Cards */
.card-custom {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.card-custom img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.card-custom .card-body {
    padding: 2rem;
}

.card-custom .card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.card-custom .card-text {
    color: var(--text-dark);
    font-size: 17px;
    line-height: 1.7;
}

/* Features Section */
.feature-box {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--light-bg);
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.feature-box h3 {
    font-size: 1.6rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
    font-weight: bold;
}

.feature-box p {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.7;
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    border-left: 5px solid var(--accent-color);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1.5rem;
    border: 3px solid var(--secondary-color);
}

.testimonial-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--dark-brown);
    margin: 0;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 2rem;
    height: 350px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(77, 59, 48, 0.9), transparent);
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Contact Form */
.contact-form {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.form-control {
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    padding: 0.9rem 1.2rem;
    font-size: 16px;
    margin-bottom: 1.5rem;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(155, 126, 189, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
    font-size: 16px;
}

/* Info Box */
.info-box {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.info-box h3 {
    color: var(--dark-brown);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.info-box p {
    color: var(--text-dark);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.info-box a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.info-box a:hover {
    color: var(--dark-brown);
    text-decoration: underline;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark-brown), var(--primary-color));
    color: rgba(255, 248, 240, 0.95);
    padding: 3rem 0 1.5rem 0;
}

footer h5 {
    color: var(--light-bg);
    font-weight: bold;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

footer p, footer li {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 248, 240, 0.9);
}

footer a {
    color: rgba(255, 248, 240, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent-color);
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 248, 240, 0.2);
    font-size: 15px;
}

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

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

    .section-title {
        font-size: 2.2rem;
    }

    .gallery-item {
        height: 250px;
    }
}

/* Background Variations */
.bg-light-custom {
    background: var(--light-bg);
}

.bg-white-custom {
    background: white;
}

/* Product Grid */
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.product-image {
    height: 280px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 2rem;
}

.product-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.product-description {
    color: var(--text-dark);
    font-size: 17px;
    line-height: 1.7;
}

/* Workshop Cards */
.workshop-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    border-top: 5px solid var(--accent-color);
    transition: all 0.3s ease;
}

.workshop-card:hover {
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.workshop-title {
    font-size: 1.8rem;
    color: var(--dark-brown);
    font-weight: bold;
    margin-bottom: 1rem;
}

.workshop-details {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.8;
}

.workshop-price {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: bold;
    margin-top: 1.5rem;
}

/* About Section */
.about-content {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-dark);
}

.about-image {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    width: 100%;
    height: auto;
}

/* Stats Section */
.stat-box {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--dark-brown);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(155, 126, 189, 0.9), rgba(157, 126, 111, 0.9)),
                url('../images/ingredients.jpg') center/cover no-repeat;
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* 404 Page */
.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.error-code {
    font-size: 8rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.error-message {
    font-size: 1.8rem;
    color: var(--dark-brown);
    margin-bottom: 2rem;
}

/* Thank You Page */
.thank-you-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thank-you-icon {
    font-size: 5rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.thank-you-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--dark-brown);
    margin-bottom: 1.5rem;
}

.thank-you-text {
    font-size: 1.3rem;
    color: var(--text-dark);
    max-width: 600px;
    margin: 0 auto 2rem auto;
}
