/*
Theme Name: Lotte und Lot
Theme URI: https://lotteundlot.de
Description: Modernes WordPress-Theme für Goldschmiedekunst
Author: Lotte und Lot
Author URI: https://lotteundlot.de
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lotte-und-lot
Tags: jewelry, modern, elegant, custom-colors
*/

/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --dark-gold: #B8941F;
    --charcoal: #2C2C2C;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --white: #FFFFFF;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header und Navigation */
header.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--charcoal);
    font-weight: 300;
    letter-spacing: 2px;
}

.logo h1 a {
    color: var(--charcoal);
    text-decoration: none;
}

.logo .tagline {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 1px;
    margin-top: -5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-links a:hover,
.nav-links li.current-menu-item a {
    color: var(--gold);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 100px 20px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--charcoal);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero h3 {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 2px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
}

.btn-secondary:hover {
    background-color: var(--charcoal);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--white);
}

/* Features */
.features {
    padding: 80px 20px;
    background-color: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    font-weight: 400;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Preview */
.preview {
    padding: 80px 20px;
    background-color: var(--light-gray);
}

.preview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

.product-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.preview-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.preview-image {
    height: 300px;
    background-color: var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-img {
    font-size: 1.2rem;
    color: var(--text-light);
    letter-spacing: 1px;
}

.preview-card h4 {
    padding: 1.5rem;
    font-size: 1.2rem;
    color: var(--charcoal);
    font-weight: 400;
}

.preview-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gold);
    font-size: 0.95rem;
}

.text-center {
    text-align: center;
    margin-top: 2rem;
}

/* Products */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.product-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.product-image {
    height: 400px;
    background-color: var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 2rem;
}

.product-category {
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.product-card h3 {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    font-weight: 400;
}

.product-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.product-price {
    font-size: 1.3rem;
    color: var(--charcoal);
    font-weight: 500;
    margin-bottom: 1rem;
}

/* About */
.about-hero {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 80px 20px;
    text-align: center;
}

.about-hero h2 {
    font-size: 3rem;
    color: var(--charcoal);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-content {
    padding: 80px 20px;
}

.about-section {
    margin-bottom: 5rem;
}

.about-section h3 {
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.about-section p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-item {
    padding: 2rem;
    background: var(--light-gray);
    border-left: 4px solid var(--gold);
}

.value-item h4 {
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    font-weight: 400;
}

.value-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Contact Form */
.contact-section {
    padding: 80px 20px;
}

.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.contact-intro h2 {
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.contact-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 4px;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 2px;
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--white);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    text-align: center;
}

.form-submit .btn {
    min-width: 200px;
}

/* Footer */
footer.site-footer {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 3rem 20px 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .hero h3 {
        font-size: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .feature-grid,
    .product-preview-grid,
    .product-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
    }
}
