/* Montserrat Font - Local */
@font-face {
    font-family: 'Montserrat';
    src: url('fonts/montserrat-v31-latin-300.woff2') format('woff2'),
         url('fonts/montserrat-v31-latin-300.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/montserrat-v31-latin-regular.woff2') format('woff2'),
         url('fonts/montserrat-v31-latin-regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/montserrat-v31-latin-500.woff2') format('woff2'),
         url('fonts/montserrat-v31-latin-500.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/montserrat-v31-latin-600.woff2') format('woff2'),
         url('fonts/montserrat-v31-latin-600.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/montserrat-v31-latin-700.woff2') format('woff2'),
         url('fonts/montserrat-v31-latin-700.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #2b2b2b;
    z-index: 1000;
    padding: 15px 0;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), 0 100%);
    padding-bottom: 25px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    flex-direction: column;
}

.logo-image {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 20px;
    color: white;
    font-weight: 300;
}

.logo-text strong {
    font-weight: 700;
}

.logo-subtitle {
    font-size: 9px;
    color: #999;
    letter-spacing: 2px;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #CCBB9B;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    width: 40px;
    height: 40px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: white;
    margin: 4px 0;
    transition: all 0.3s ease;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(3px, 3px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('bilder/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 60px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero::after {
    content: 'HOMESTYLE';
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 300px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    letter-spacing: 20px;
    z-index: 2;
    white-space: nowrap;
}

.hero-content {
    text-align: left;
    color: white;
    position: relative;
    z-index: 3;
    max-width: 1400px;
    width: 100%;
    padding: 0 100px;
}

.hero h1 {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 30px;
    line-height: 1.1;
}

.hero h1 .highlight-text {
    color: #CCBB9B;
}

.hero .subtitle {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 700px;
}

.hero-btn {
    display: inline-block;
    padding: 18px 60px;
    background-color: #CCBB9B;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    border-radius: 0;
}

.hero-btn:hover {
    background-color: #CCBB9B;
    opacity: 0.9;
}

/* Hero Secondary */
.hero-secondary {
    margin-top: 0;
    min-height: 60vh;
}

.hero-secondary .hero-content {
    text-align: center;
    margin: 0 auto;
}

.hero-secondary h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
    font-style: italic;
}

.hero-secondary .hero-btn {
    font-style: normal;
}

/* Info Section */
.info {
    padding: 100px 60px;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.info::before {
    content: 'HOMESTYLE';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 200px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    letter-spacing: 15px;
    z-index: 1;
    white-space: nowrap;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.info-header {
    margin-bottom: 60px;
}

.info-header h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: #2b2b2b;
}

.info-header .highlight {
    color: #CCBB9B;
    font-weight: 700;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.info-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-text p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: left;
}

.info-text strong {
    font-weight: 600;
    color: #2b2b2b;
}

.info-image-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.info-right {
    display: flex;
}

.info-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Vorteile Section */
.vorteile {
    padding: 100px 60px;
    background-color: #f5f5f5;
}

.vorteile-header {
    margin: 0 auto 60px;
    max-width: 1200px;
}

.vorteile-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2b2b2b;
    line-height: 1.3;
}

.vorteile-header .highlight {
    color: #CCBB9B;
    font-weight: 700;
}

.vorteile-text-grid {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.vorteile-text-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.vorteil-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: #CCBB9B;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.vorteil-item p {
    font-size: 14px;
    line-height: 1.5;
    color: #777;
    font-weight: 300;
}

.vorteile-images-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1.2fr 1fr;
    gap: 20px;
    min-height: 600px;
}

.vorteile-col-left {
    display: flex;
}

.vorteile-col-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.vorteile-col-middle {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vorteile-col-middle img {
    width: 100%;
    flex: 1;
    object-fit: cover;
    object-position: center;
    min-height: 180px;
}

.vorteile-col-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vorteile-col-right img {
    width: 100%;
    flex: 1;
    object-fit: cover;
    object-position: center;
    min-height: 280px;
}

/* Produkte Section */
.produkte {
    padding: 100px 60px;
    background-color: white;
}

.produkte-header {
    margin: 0 auto 60px;
    max-width: 1200px;
}

.produkte-header h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: #2b2b2b;
}

.produkte-header .highlight {
    color: #CCBB9B;
    font-weight: 700;
}

.produkte-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.produkt-item h3 {
    font-size: 40px;
    font-weight: 700;
    color: #CCBB9B;
    margin-bottom: 30px;
    letter-spacing: 0px;
    line-height: 1.1;
}

.produkt-item p {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 15px;
}

/* Kontakt Section */
.kontakt {
    padding: 100px 60px;
    background-color: #CCBB9B;
}

.kontakt-content {
    max-width: 700px;
    margin: 0 auto;
}

.kontakt-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: white;
    line-height: 1.3;
}

.kontakt-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-row {
    margin-bottom: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 12px;
    font-weight: 500;
    color: white;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: none;
    background-color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    margin-bottom: 20px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid white;
    background-color: white;
}

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

.submit-btn {
    padding: 15px 50px;
    background-color: white;
    color: #CCBB9B;
    border: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    align-self: center;
    margin-top: 20px;
}

.submit-btn:hover {
    background-color: #2b2b2b;
    color: white;
}

/* Footer */
.footer {
    background-color: #2b2b2b;
    color: white;
    padding: 60px 60px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo .logo-image {
    height: 30px;
    width: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

.footer-logo .logo-text {
    font-size: 22px;
    color: white;
    font-weight: 300;
    margin-bottom: 5px;
}

.footer-logo .logo-text strong {
    font-weight: 700;
}

.footer-logo .logo-subtitle {
    font-size: 9px;
    color: #999;
    letter-spacing: 2px;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #CCBB9B;
}

.footer-column p {
    font-size: 13px;
    line-height: 1.8;
    color: #999;
    font-weight: 300;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #777;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-container,
    .info-container,
    .produkte-grid,
    .footer-container {
        padding: 0 0px;
    }

    .nav-container {
        padding: 0 40px;
    }

    .hero-content {
        padding: 0 60px;
    }

    .hero h1 {
        font-size: 56px;
    }

    .hero::after {
        font-size: 220px;
    }
}

@media (max-width: 992px) {
    /* Mobile menu wird jetzt bei 768px gehandhabt */

    .hero-content {
        padding: 0 40px;
    }

    .hero h1 {
        font-size: 48px;
        letter-spacing: 2px;
    }

    .hero .subtitle {
        font-size: 18px;
    }

    .hero::after {
        font-size: 180px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .info::before {
        font-size: 120px;
    }

    .vorteile-text-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vorteile-images-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .produkte-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    /* Mobile Navigation */
    .navbar {
        clip-path: none;
        padding-bottom: 15px;
        overflow: visible;
    }

    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #2b2b2b;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease-in-out;
        gap: 0;
        padding: 20px 0;
        margin: 0;
        z-index: 999;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        list-style: none;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        font-size: 16px;
    }

 
    .info,
    .vorteile,
    .produkte,
    .kontakt,
    .footer {
        padding: 80px 5%;
    }

    .hero-content {
        width: 90%;
        max-width: 90%;
        margin: 0 auto;
        padding: 0;
    }

    .info-container,
    .vorteile-header,
    .vorteile-text-grid,
    .vorteile-images-grid,
    .produkte-header,
    .produkte-grid,
    .kontakt-content,
    .footer-container {
        width: 90%;
        max-width: 90%;
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 36px;
        letter-spacing: 1px;
    }

    .hero .subtitle {
        font-size: 16px;
    }

    .hero::after {
        font-size: 120px;
        bottom: -30px;
    }

    .info-header h2,
    .vorteile-header h2,
    .produkte-header h2 {
        font-size: 26px;
    }

    .info::before {
        font-size: 80px;
    }

    .kontakt-content h2 {
        font-size: 32px;
    }

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

    .vorteile-images-grid {
        grid-template-columns: 1fr;
        padding-top: 40px;
    }

    .vorteile-col-middle img,
    .vorteile-col-right img {
        height: auto;
    }
}

@media (max-width: 576px) {
    .navbar,
    .info,
    .vorteile,
    .produkte,
    .kontakt,
    .footer {
        padding: 25px 0%;
    }

    .nav-container {
        width: 90%;
        margin: auto;
        padding: 0 0; 
    }

    .hero-content {
        width: 90%;
        max-width: 90%;
        margin: 0 auto;
        padding: 0;
    }

    .info-container,
    .vorteile-header,
    .vorteile-text-grid,
    .vorteile-images-grid,
    .produkte-header,
    .produkte-grid,
    .kontakt-content,
    .footer-container {
        width: 90%;
        max-width: 90%;
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 38px;
        letter-spacing: 0px;
    }

    .hero .subtitle {
        font-size: 20px;
    }

    .hero-btn {
        padding: 14px 40px;
        font-size: 14px;
    }

    .hero::after {
        font-size: 80px;
        bottom: -20px;
        letter-spacing: 10px;
    }

    .info-header h2,
    .vorteile-header h2,
    .produkte-header h2 {
        font-size: 32px;
        margin-bottom: 60px;
    }

    .vorteile-header h2 {
        font-size: 28px;
    }

    .kontakt-content h2 {
        font-size: 28px;
    }

    .produkt-item h3 {
        font-size: 32px;
    }

    .info-text p {
        font-size: 18px;
    }

    .produkt-item p {
        font-size: 18px;
    }
}

footer a {
    color: white; 
}

/**
 * Default Template Styles (Impressum, Datenschutz, etc.)
 * Styles für Standard-WordPress-Seiten
 *
 * @package Boeden2026
 */

/* ==========================================================================
   Main Content Wrapper für Default Pages
   ========================================================================== */

.site-content,
.page-content,
.entry-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 60px 80px 60px; /* Extra padding-top wegen fixed navbar */
    line-height: 1.8;
}

/* Artikel Container */
article.page,
article.post {
    background: transparent;
}

/* ==========================================================================
   Entry Header
   ========================================================================== */

.entry-header {
    margin-bottom: 50px;
}

.entry-header .entry-title {
    font-size: 48px;
    font-weight: 700;
    color: #2b2b2b;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

/* ==========================================================================
   Überschriften
   ========================================================================== */

.page-content h1,
.entry-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #2b2b2b;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-content h2,
.entry-content h2 {
    font-size: 32px;
    font-weight: 600;
    color: #2b2b2b;
    margin-top: 50px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.page-content h3,
.entry-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2b2b2b;
    margin-top: 35px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-content h4,
.entry-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2b2b2b;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* ==========================================================================
   Absätze
   ========================================================================== */

.page-content p,
.entry-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.page-content p strong,
.entry-content p strong {
    font-weight: 600;
    color: #2b2b2b;
}

/* ==========================================================================
   Links
   ========================================================================== */

.page-content a,
.entry-content a {
    color: #2b2b2b;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-content a:hover,
.entry-content a:hover {
    color: #666;
}

/* ==========================================================================
   Listen
   ========================================================================== */

.page-content ul,
.entry-content ul,
.page-content ol,
.entry-content ol {
    margin-left: 30px;
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.8;
}

.page-content li,
.entry-content li {
    margin-bottom: 10px;
}

/* ==========================================================================
   Tabellen
   ========================================================================== */

.page-content table,
.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.page-content th,
.entry-content th,
.page-content td,
.entry-content td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
}

.page-content th,
.entry-content th {
    background-color: #2b2b2b;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
}

/* ==========================================================================
   Blockquotes
   ========================================================================== */

.page-content blockquote,
.entry-content blockquote {
    border-left: 4px solid #2b2b2b;
    padding-left: 25px;
    margin: 30px 0;
    font-style: italic;
    color: #666;
}

/* ==========================================================================
   Code Blocks
   ========================================================================== */

.page-content code,
.entry-content code {
    background-color: #f5f5f5;
    padding: 3px 8px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 16px;
}

.page-content pre,
.entry-content pre {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 5px;
    overflow-x: auto;
    margin-bottom: 25px;
}

/* ==========================================================================
   Responsive Styles für Default Template
   ========================================================================== */

@media (max-width: 992px) {
    .site-content,
    .page-content,
    .entry-content {
        padding: 100px 40px 60px 40px;
    }

    .entry-header .entry-title,
    .page-content h1,
    .entry-content h1 {
        font-size: 36px;
    }

    .page-content h2,
    .entry-content h2 {
        font-size: 28px;
    }

    .page-content h3,
    .entry-content h3 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .site-content,
    .page-content,
    .entry-content {
        padding: 90px 20px 50px 20px;
    }

    .entry-header {
        margin-bottom: 35px;
    }

    .entry-header .entry-title,
    .page-content h1,
    .entry-content h1 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .page-content h2,
    .entry-content h2 {
        font-size: 24px;
        margin-top: 35px;
        margin-bottom: 20px;
    }

    .page-content h3,
    .entry-content h3 {
        font-size: 20px;
    }

    .page-content p,
    .entry-content p,
    .page-content ul,
    .entry-content ul,
    .page-content ol,
    .entry-content ol {
        font-size: 16px;
    }

    .page-content ul,
    .entry-content ul,
    .page-content ol,
    .entry-content ol {
        margin-left: 20px;
    }
}


.page-template-default .entry-header h1 {
    display: none;
}

.page-template-default .entry-content {
    padding-top: 0;
}

.page-template-default .site-content {
padding: 90px 0px 50px 0px;
}

