/* ===========================
   CSS für Raumhelden NRW
   Farbschema: Gelb, Schwarz, Weiß
   =========================== */

:root {
    --primary-gold: #BF9752;
    --dark-gold: #A67E3F;
    --light-gold: #D4B474;
    --petrol: #123C3A;
    --dark-petrol: #0E2E2C;
    --light-petrol: #1A4E4B;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-medium: #e0e0e0;
    --gray-dark: #333333;
    --black: #0E2E2C;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--gray-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */

.header {
    background-color: var(--petrol);
    color: var(--white);
    padding: 2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo img {
    height: 140px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 3px 8px rgba(0,0,0,0.25));
    border-radius: 8px;
}

.logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 5px 15px rgba(191, 151, 82, 0.6));
}

.logo-text h1 {
    font-family: 'Oswald', sans-serif;
    color: var(--primary-gold);
    font-size: 2.6rem;
    margin-bottom: 0;
}

.tagline {
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    font-size: 1.1rem;
    margin-top: 0;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.burger-menu span {
    width: 30px;
    height: 3px;
    background-color: var(--primary-gold);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav a {
    font-family: 'Oswald', sans-serif;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 1.2rem;
}

.nav a:hover {
    color: var(--primary-gold);
}

.cta-button {
    background-color: var(--primary-gold);
    color: var(--white) !important;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--dark-gold);
}

.cta-wrapper {
    display: flex;
    align-items: center;
}

/* ===========================
   WELCOME BANNER
   =========================== */

.welcome-banner {
    background: white;
    padding: 1.2rem 0;
    border-bottom: 2px solid rgba(191, 151, 82, 0.3);
    overflow: hidden;
    position: relative;
    width: 100%;
}

.welcome-banner-inner {
    display: flex;
    white-space: nowrap;
    animation: scroll-banner 25s linear infinite;
}

.welcome-banner-inner span {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #BF9752;
    padding-right: 3rem;
    display: inline-block;
}

@keyframes scroll-banner {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===========================
   HERO SECTION
   =========================== */

.hero {
    background: linear-gradient(135deg, var(--petrol) 0%, var(--light-petrol) 100%);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.button-primary {
    display: inline-block;
    background-color: var(--light-gold);
    color: var(--petrol);
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.button-primary:hover {
    background-color: var(--primary-gold);
    box-shadow: 0 5px 15px rgba(191, 151, 82, 0.4);
}

/* ===========================
   SECTIONS
   =========================== */

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--black);
    position: relative;
    padding-bottom: 1rem;
}

.services {
    padding: 5rem 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-gold);
    overflow: hidden;
}

.service-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.service-content {
    padding: 2rem;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--black);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card p {
    color: var(--gray-dark);
    line-height: 1.6;
}

/* ===========================
   ABOUT SECTION
   =========================== */

.about {
    padding: 5rem 0;
    background-color: var(--gray-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.about-text h4 {
    font-size: 1.3rem;
    color: var(--black);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--gray-dark);
}

.features-list {
    list-style: none;
    margin: 1.5rem 0;
}

.features-list li {
    padding: 0.5rem 0;
    color: var(--gray-dark);
    font-size: 1.05rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-placeholder {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    width: 100%;
    height: 400px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 5rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.about-placeholder p:last-child {
    font-size: 1.2rem;
    font-weight: bold;
}

/* ===========================
   CTA SECTION
   =========================== */

.cta-section {
    background-color: var(--primary-gold);
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.cta-section .button-primary {
    background-color: var(--petrol);
    color: var(--white);
}

.cta-section .button-primary:hover {
    background-color: var(--dark-petrol);
}

/* ===========================
   CALCULATOR FORM
   =========================== */

.calculator-section {
    padding: 0 0 5rem 0;
    background-color: var(--gray-light);
}

.calculator-section .section-title {
    color: var(--light-gold);
}

.calculator-section .subtitle {
    color: #654321;
}

.subtitle {
    text-align: center;
    color: var(--gray-dark);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.calculator-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--gray-medium);
    border-left: 3px solid transparent;
    padding-left: 0.75rem;
    border-radius: 4px;
    transition: border-left-color 0.3s ease;
}

.form-section:last-child {
    border-bottom: none;
}

.form-section.section-active {
    border-left-color: var(--primary-gold);
}

.form-section-title {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0;
    cursor: pointer;
    user-select: none;
    padding: 0.5rem 0.25rem;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.form-section-toggle:hover {
    background: rgba(191, 151, 82, 0.07);
}

.form-section-toggle input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.form-section-toggle h3 {
    font-size: 1.2rem;
    color: var(--black);
    margin: 0;
    flex: 1;
    font-weight: 600;
    transition: color 0.2s ease;
}

.form-section.section-active .form-section-toggle h3 {
    color: var(--dark-petrol);
}

.toggle-switch {
    position: relative;
    width: 52px;
    height: 28px;
    background: #cbd5e0;
    border-radius: 14px;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: var(--white);
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.toggle-switch.active {
    background: var(--primary-gold);
}

.toggle-switch.active .toggle-slider {
    transform: translateX(24px);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--black);
}

.form-group input[type="number"],
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--dark-petrol);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: var(--dark-petrol);
    color: var(--white);
}

.form-group select option {
    background-color: var(--white);
    color: var(--gray-dark);
}

.form-group input[type="number"]:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-gold);
    background-color: var(--dark-petrol);
}

.form-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
    cursor: pointer;
    accent-color: var(--primary-gold);
}

.option-group {
    margin-top: 1rem;
    padding: 1.5rem;
    background-color: var(--gray-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-gold);
}

/* ===========================
   QUALITY SELECTOR
   =========================== */

.quality-selector {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.quality-option {
    flex: 1;
    min-width: 150px;
    position: relative;
    cursor: pointer;
}

.quality-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.quality-label {
    display: block;
    padding: 1rem;
    background-color: var(--white);
    border: 2px solid var(--gray-medium);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.quality-label strong {
    display: block;
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 0.3rem;
}

.quality-label small {
    display: block;
    color: var(--gray-dark);
    font-size: 0.85rem;
}

.quality-option input[type="radio"]:checked + .quality-label {
    background-color: var(--primary-gold);
    border-color: var(--dark-gold);
    transform: scale(1.05);
    color: var(--white);
}

.quality-option input[type="radio"]:checked + .quality-label strong,
.quality-option input[type="radio"]:checked + .quality-label small {
    color: var(--white);
}

.quality-option:hover .quality-label {
    border-color: var(--primary-gold);
}

/* ===========================
   PRICE DISPLAY
   =========================== */

.price-display {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.price-breakdown {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 2px solid var(--light-gold);
}

.price-breakdown h3 {
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 1.5rem;
    text-align: center;
}

#breakdown-details {
    margin-bottom: 1.5rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    background-color: var(--white);
    border-radius: 5px;
    border-left: 3px solid var(--primary-gold);
}

.breakdown-item-name {
    font-weight: 600;
    color: var(--black);
}

.breakdown-item-price {
    color: var(--gray-dark);
    font-weight: 500;
}

.price-total,
.price-mwst,
.price-final {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 1.2rem;
}

.price-total {
    border-top: 2px solid var(--gray-medium);
    font-weight: 600;
}

.price-mwst {
    color: var(--gray-dark);
}

.price-final {
    background-color: var(--primary-gold);
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
}

.price-final span {
    color: var(--white);
}

.price-amount {
    color: var(--black);
    font-weight: bold;
}

.price-amount-final {
    color: var(--black);
    font-weight: bold;
    font-size: 1.6rem;
}

.price-note {
    text-align: center;
}

.price-note p {
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* ===========================
   FOOTER
   =========================== */

.footer {
    background-color: var(--petrol);
    color: var(--white);
    padding: 1rem 0;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Oswald', sans-serif;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-section a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: var(--gray-medium);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 768px) {
    .header {
        padding: 0.5rem 0;
    }
    
    .header .container {
        justify-content: space-between;
        padding: 0 10px;
        gap: 0.5rem;
    }

    /* Logo Anpassungen */
    .logo {
        gap: 0.5rem;
        flex: 0 1 auto; /* Don't grow, can shrink */
    }
    .logo img {
        height: 40px;
    }
    .logo-text h1 {
        font-size: 1.2rem;
        white-space: nowrap;
    }
    .tagline {
        display: none;
    }

    /* CTA Button Sichtbar machen & Anpassen */
    .cta-wrapper {
        display: block;
        order: 2; /* Zwischen Logo und Burger */
        margin-left: auto; /* Push nach rechts wenn möglich */
        margin-right: 0.5rem;
    }
    
    .cta-button {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    /* Burger Menu nach rechts */
    .burger-menu {
        display: flex;
        order: 3;
        margin-left: 0;
    }

    
    .burger-menu {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--petrol);
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0,0,0,0.3);
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 2rem;
        padding: 5rem 2rem 2rem 2rem;
        height: 100%;
    }
    
    .nav li {
        width: 100%;
    }
    
    .nav a {
        display: block;
        padding: 1rem;
        font-size: 1.2rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-placeholder {
        height: 250px;
        font-size: 3rem;
    }
    
    .logo img:hover {
        transform: scale(1.05);
    }
    
    .quality-selector {
        flex-direction: column;
    }
    
    .quality-option {
        min-width: 100%;
    }

    .quality-label {
        padding: 0.75rem;
    }

    .quality-label strong {
        font-size: 0.95rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }

    .calculator-form {
        padding: 1.25rem;
    }

    .calculator-section .section-title {
        font-size: 1.5rem;
    }

    .form-section-title {
        font-size: 1.1rem;
    }

    .form-section-toggle h3 {
        font-size: 1.05rem;
    }

    .toggle-switch {
        width: 44px;
        height: 24px;
    }

    .toggle-slider {
        width: 18px;
        height: 18px;
    }

    .toggle-switch.active .toggle-slider {
        transform: translateX(20px);
    }

    .price-breakdown h3 {
        font-size: 1.3rem;
    }

    .breakdown-item {
        gap: 0.25rem;
    }

    .breakdown-item-name {
        font-size: 0.85rem;
        word-break: break-word;
    }

    .breakdown-item-price {
        font-size: 0.85rem;
    }

    .price-total,
    .price-mwst,
    .price-final {
        font-size: 0.95rem;
        padding: 0.75rem;
    }
    
    .price-final {
        font-size: 1.05rem;
    }
    
    .price-amount-final {
        font-size: 1.1rem;
    }
}

@media (max-width: 400px) {
    .header .container {
        gap: 0.2rem;
    }

    .logo-text h1 {
        font-size: 0.95rem;
    }

    .cta-button {
        font-size: 0.75rem;
        padding: 0.3rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .calculator-form {
        padding: 0.875rem;
    }
    
    .option-group {
        padding: 0.875rem;
    }
    
    .price-breakdown {
        padding: 0.875rem;
    }

    .price-display {
        padding: 0.875rem;
    }
    
    .breakdown-item {
        flex-direction: column;
        gap: 0.25rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .calculator-section .section-title {
        font-size: 1.3rem;
    }

    .calculator-section .subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .form-section {
        margin-bottom: 1.75rem;
        padding-bottom: 1.25rem;
    }

    .price-note p {
        font-size: 0.85rem;
    }
}

/* ===========================
   REFERENZEN PAGE
   =========================== */

.referenzen-section {
    padding: 5rem 0;
    background-color: var(--gray-light);
}

.referenz-item {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.referenz-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.referenz-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.referenz-header h3 {
    color: var(--petrol);
    font-size: 1.8rem;
    margin: 0;
}

.referenz-badge {
    background-color: var(--primary-gold);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.referenz-details {
    margin-bottom: 1.5rem;
}

.referenz-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.referenz-info p {
    margin: 0;
    color: var(--gray-dark);
}

.referenz-info strong {
    color: var(--petrol);
}

.referenz-description {
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.referenz-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.gallery-image:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 40px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    color: var(--primary-gold);
    transform: scale(1.2);
}

/* Responsive Referenzen */
@media (max-width: 768px) {
    .referenz-item {
        padding: 1.5rem;
    }
    
    .referenz-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .referenz-header h3 {
        font-size: 1.4rem;
    }
    
    .referenz-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .referenz-gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery-image {
        height: 200px;
    }
}

/* ===========================
   TÜREN KONFIGURATION
   =========================== */

.tuer-config {
    background-color: var(--white);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-gold);
}

.tuer-titel {
    color: var(--petrol);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.tuer-art-select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--gray-medium);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.tuer-art-select:focus {
    outline: none;
    border-color: var(--primary-gold);
}

/* Schritt 1 Container mit beiger Umrandung */
.step-1-container {
    border: 3px solid #BF9752;
    border-radius: 8px;
    padding: 1.5rem;
    background-color: #ffffff;
    margin-bottom: 2rem;
}

