/* ============================================
   BRILLANT & CO - Main Stylesheet
   Version: 1.0
   Last Updated: December 2024
   ============================================ */

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #FFFFFF;
}

/* ============================================
   HEADER STYLES
   ============================================ */
header.main-header {
    background: #FFFFFF;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-icon {
    width: 160px;
    height: 88px;
    border-radius: 8px;
    overflow: hidden;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.logo-text-header {
    display: flex;
    flex-direction: column;
}

.logo-text-header .brand-name {
    font-size: 1.5em;
    font-weight: 800;
    color: #000000;
    line-height: 1;
}

.logo-text-header .brand-name .highlight {
    color: #ff9900;
}

.logo-text-header .brand-tagline {
    font-size: 0.7em;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-cta .btn-header {
    background: #ff9900;
    color: #FFFFFF;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1em;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(255, 102, 0, 0.3);
}

.header-cta .btn-header:hover {
    background: #ff7a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 102, 0, 0.4);
}

.header-cta .btn-header.secondary {
    background: #000000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.header-cta .btn-header.secondary:hover {
    background: #333333;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* ============================================
   HERO SECTION STYLES
   ============================================ */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/brillant-nature.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #FFFFFF;
    padding: 150px 50px 120px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.8em;
    margin-bottom: 25px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 700px;
}

.hero h1 .highlight {
    color: #ff9900;
}

.hero .tagline {
    font-size: 1.5em;
    margin-bottom: 30px;
    font-weight: 400;
    color: #FFFFFF;
    max-width: 600px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    margin-top: 50px;
}

.hero-cta .btn-primary {
    background: #ff9900;
    color: #FFFFFF;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2em;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(255, 102, 0, 0.4);
    display: inline-block;
}

.hero-cta .btn-primary:hover {
    background: #ff7a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 102, 0, 0.5);
}

/* ============================================
   PAGE HERO (For subpages)
   ============================================ */
.page-hero {
    background: #ff9900;
    color: #FFFFFF;
    padding: 70px 50px 50px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3em;
    font-weight: 800;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.page-hero h1 .highlight {
    color: #FFFFFF;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 8px;
}

.page-hero p {
    font-size: 1.1em;
    color: #FFFFFF;
    font-weight: 400;
}

/* ============================================
   INTRO SECTION
   ============================================ */
.intro-section {
    background: #FFFFFF;
    padding: 80px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.intro-left h2 {
    font-size: 2.5em;
    color: #000000;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 0;
}

.intro-left h2 .highlight {
    color: #ff9900;
}

.intro-right {
    font-size: 1.15em;
    color: #555;
    line-height: 1.9;
}

.intro-right p {
    margin-bottom: 20px;
}

.intro-right p:last-child {
    margin-bottom: 0;
}

/* ============================================
   PHILOSOPHY SECTION
   ============================================ */
.philosophy-section {
    background: #FFFFFF;
    padding: 60px 20px;
    text-align: center;
}

.philosophy-box {
    background: #f5f5f5;
    color: #000000;
    padding: 40px 50px;
    border-radius: 16px;
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.3em;
    border-left: 6px solid #ff9900;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: left;
    position: relative;
}

.philosophy-box::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4em;
    color: #ff9900;
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 0;
}

.philosophy-box strong {
    display: block;
    margin-bottom: 15px;
    font-size: 0.75em;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff9900;
    font-weight: 700;
}

.philosophy-text {
    font-style: italic;
    font-weight: 400;
    line-height: 1.7;
    color: #000000;
}

/* ============================================
   PREMIUM SECTION
   ============================================ */
.premium-section {
    background: #ff9900;
    padding: 80px 20px;
    text-align: center;
}

.premium-section h2 {
    font-size: 2.8em;
    color: #FFFFFF;
    margin-bottom: 30px;
    font-weight: 800;
}

.premium-section h2 .highlight {
    color: #FFFFFF;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 8px;
}

.premium-section p {
    font-size: 1.2em;
    max-width: 1000px;
    margin: 0 auto;
    color: #FFFFFF;
    line-height: 1.9;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: #FFFFFF;
}

.services h2 {
    text-align: center;
    font-size: 2.8em;
    color: #000000;
    margin-bottom: 60px;
    font-weight: 800;
}

.services h2 .highlight {
    color: #ff9900;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #ff9900;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 102, 0, 0.2);
}

.service-card h3 {
    color: #000000;
    font-size: 1.6em;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    font-weight: 700;
}

.service-card .intro-text {
    color: #666;
    font-size: 1em;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    font-size: 1.05em;
}

.service-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff9900;
    font-weight: bold;
    font-size: 1.3em;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: #000000;
    color: white;
    padding: 70px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    position: relative;
    font-weight: 800;
}

.cta-section p {
    font-size: 1.3em;
    margin-bottom: 35px;
    position: relative;
}

.cta-button {
    display: inline-block;
    background: #ff9900;
    color: white;
    padding: 20px 55px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(255, 102, 0, 0.4);
    position: relative;
}

.cta-button:hover {
    background: #ff7a1a;
    transform: scale(1.05);
    box-shadow: 0 8px 35px rgba(255, 102, 0, 0.5);
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-container {
    max-width: 1200px;
    margin: -40px auto 0;
    padding: 0 20px 80px;
    position: relative;
    z-index: 10;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-form-section {
    background: #FFFFFF;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-section h2 {
    font-size: 2em;
    color: #000000;
    margin-bottom: 10px;
    font-weight: 800;
}

.contact-form-section .subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.05em;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.95em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1em;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff9900;
}

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

.form-group.required label::after {
    content: " *";
    color: #ff9900;
}

.submit-btn {
    background: #ff9900;
    color: #FFFFFF;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 102, 0, 0.3);
    width: 100%;
}

.submit-btn:hover {
    background: #ff7a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 102, 0, 0.4);
}

.contact-info-section {
    background: #f5f5f5;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-info-section h2 {
    font-size: 2em;
    color: #000000;
    margin-bottom: 30px;
    font-weight: 800;
}

.contact-info-item {
    margin-bottom: 25px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-content h3 {
    font-size: 1.2em;
    color: #ff9900;
    margin-bottom: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-content p {
    color: #555;
    font-size: 1.05em;
    line-height: 1.6;
}

.contact-info-content a {
    color: #ff9900;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: #ff7a1a;
}

.success-message {
    background: #4CAF50;
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}

.error-message {
    background: #f44336;
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}

/* ============================================
   IMPRESSUM & DATENSCHUTZ STYLES
   ============================================ */
.content-container {
    max-width: 1100px;
    margin: -30px auto 60px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.impressum-box,
.datenschutz-box {
    background: #FFFFFF;
    padding: 45px 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.impressum-grid,
.datenschutz-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px 35px;
    margin-bottom: 30px;
}

.impressum-section,
.datenschutz-section {
    margin-bottom: 0;
}

.full-width-section {
    grid-column: 1 / -1;
    margin-top: 15px;
}

.impressum-section h2,
.datenschutz-section h2 {
    font-size: 0.95em;
    color: #ff9900;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.datenschutz-section h3 {
    font-size: 0.9em;
    color: #000000;
    margin-bottom: 8px;
    margin-top: 12px;
    font-weight: 600;
}

.impressum-section p,
.datenschutz-section p {
    margin-bottom: 8px;
    font-size: 0.9em;
    line-height: 1.7;
    color: #555;
    font-weight: 400;
}

.datenschutz-section ul {
    margin: 10px 0 10px 20px;
    font-size: 0.9em;
    color: #555;
}

.datenschutz-section li {
    margin-bottom: 5px;
    line-height: 1.6;
}

.impressum-section strong,
.datenschutz-section strong {
    color: #000000;
    font-weight: 600;
}

.impressum-section a,
.datenschutz-section a {
    color: #ff9900;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.impressum-section a:hover,
.datenschutz-section a:hover {
    color: #ff7a1a;
    text-decoration: underline;
}

.company-name {
    font-size: 1em;
    font-weight: 700;
    color: #000000;
    margin-bottom: 6px;
}

.company-description {
    font-size: 0.85em;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.6;
}

.info-line {
    margin-bottom: 6px;
    font-size: 0.9em;
    line-height: 1.6;
    color: #555;
}

.info-label {
    font-weight: 600;
    color: #333;
    display: inline-block;
    margin-bottom: 2px;
}

.intro-section {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

.intro-section p {
    font-size: 0.95em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.highlight-box {
    background: #fff9f5;
    border-left: 3px solid #ff9900;
    padding: 15px 20px;
    margin: 15px 0;
    border-radius: 4px;
}

.highlight-box p {
    margin-bottom: 5px;
    font-size: 0.9em;
}

.divider {
    border-top: 1px solid #e0e0e0;
    margin: 25px 0;
}

/* ============================================
   FOOTER STYLES
   ============================================ */
footer {
    background: #ff9900;
    color: white;
    text-align: center;
    padding: 18px;
    font-size: 0.9em;
}

footer p {
    margin: 0;
    display: inline;
}

footer .separator {
    margin: 0 12px;
    opacity: 0.6;
}

footer a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

footer a:hover {
    opacity: 0.8;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 968px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .intro-section {
        padding: 60px 20px;
    }

    .intro-left h2 {
        font-size: 2em;
    }

    .intro-right {
        font-size: 1.05em;
    }

    .impressum-grid,
    .datenschutz-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px 25px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    header.main-header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }

    .hero {
        padding: 100px 20px 80px;
        text-align: left;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .hero .tagline {
        font-size: 1.2em;
    }

    .page-hero {
        padding: 60px 20px 40px;
    }

    .page-hero h1 {
        font-size: 2.2em;
    }

    .philosophy-box {
        padding: 30px 30px;
        font-size: 1.1em;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .impressum-box,
    .datenschutz-box {
        padding: 30px 25px;
    }

    .impressum-grid,
    .datenschutz-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .impressum-section h2,
    .datenschutz-section h2 {
        font-size: 0.9em;
    }

    .contact-form-section,
    .contact-info-section {
        padding: 30px;
    }

    footer .separator {
        display: none;
    }

    footer p {
        display: block;
        margin: 4px 0;
    }
}
