/* WULFF IMMOBILIEN - CUSTOM STYLES */
/* Hier können Sie eigene Anpassungen vornehmen */

/* NAVIGATION STYLING - Wie gewünscht */
/* Navigation auf Homepage (absolute positioned) */
.absolute.top-0.left-0.right-0.z-20.p-6 {
    background-color: #cedfef !important;
    color: #202020 !important;
}

.absolute.top-0.left-0.right-0.z-20.p-6 a {
    color: #202020 !important;
}

.absolute.top-0.left-0.right-0.z-20.p-6 a:hover {
    color: #404040 !important;
}

/* SimpleHeader Navigation (für Unterseiten) */
.bg-neutral-800 {
    background-color: #cedfef !important;
    color: #202020 !important;
}

.bg-neutral-800 a {
    color: #202020 !important;
}

.bg-neutral-800 a:hover {
    color: #404040 !important;
}

/* ========================================
   GRUNDLEGENDE EINSTELLUNGEN
   ======================================== */

/* Logo-Anpassungen */
.logo-main {
    max-width: 250px;
    height: auto;
}

.logo-header {
    max-width: 200px;
    height: auto;
}

/* ========================================
   FARBEN UND SCHRIFTARTEN
   ======================================== */

/* Hauptfarben */
:root {
    --primary-color: #1e3a8a;      /* Tiefes München-Blau */
    --secondary-color: #f59e0b;    /* München-Gold */
    --accent-color: #ef4444;       /* Akzent-Rot */
    --text-dark: #1f2937;          /* Dunkler Text */
    --text-light: #ffffff;         /* Heller Text */
    --background-light: #f9fafb;   /* Heller Hintergrund */
    --background-dark: #374151;    /* Dunkler Hintergrund */
}

/* Schriftarten */
body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
}

/* ========================================
   HEADER UND NAVIGATION
   ======================================== */

/* Haupt-Header */
.main-header {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.header-overlay {
    background: linear-gradient(to bottom, 
        rgba(30, 58, 138, 0.3), 
        rgba(30, 58, 138, 0.5), 
        rgba(30, 58, 138, 0.7));
}

/* Navigation */
.navigation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    padding: 1.5rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Simple Header (Unterseiten) */
.simple-header {
    background-color: var(--background-dark);
    color: var(--text-light);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 50;
}

/* ========================================
   BUTTONS UND INTERAKTIVE ELEMENTE
   ======================================== */

/* Hauptbutton */
.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1e40af;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

/* Sekundärbutton */
.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--text-light);
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

/* ========================================
   IMMOBILIEN-KARTEN
   ======================================== */

.property-card {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.property-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.property-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.property-info {
    padding: 1.5rem;
}

.property-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.property-location {
    color: #6b7280;
    margin-bottom: 1rem;
}

.property-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* ========================================
   IMMOBILIEN-DETAILS SEITE
   ======================================== */

.property-gallery {
    position: relative;
    height: 400px;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 2rem;
}

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

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-nav-btn:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.gallery-prev {
    left: 1rem;
}

.gallery-next {
    right: 1rem;
}

.gallery-counter {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
}

/* ========================================
   KONTAKT-BEREICH
   ======================================== */

.contact-section {
    background-color: var(--background-light);
    padding: 4rem 0;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background-color: var(--background-dark);
    color: var(--text-light);
    padding: 2rem 0;
    text-align: center;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablets */
@media (max-width: 768px) {
    .logo-main {
        max-width: 200px;
    }
    
    .property-card {
        margin-bottom: 1.5rem;
    }
    
    .gallery-nav-btn {
        width: 35px;
        height: 35px;
    }
}

/* Mobile Geräte */
@media (max-width: 480px) {
    .main-header {
        height: 70vh;
    }
    
    .logo-main {
        max-width: 180px;
    }
    
    .property-gallery {
        height: 250px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* ========================================
   EIGENE ANPASSUNGEN
   (Hier können Sie Ihre Änderungen vornehmen)
   ======================================== */

/* Beispiel für eigene Anpassungen: */
/*
.custom-header-style {
    background-color: #your-color;
}

.custom-text-size {
    font-size: 18px;
}
*/