/* 
Theme Name: Hello-Elementor Child 
Theme URL: http://yourdomain.com
Description: Hello-Elementor Child 
Theme Author: I bims, der kev
Author URL: http://yourdomain.com
Template: hello-elementor 
Version: 1.0.0 
Text Domain: hello-elementor-child 
*/
/* Custom Styles für die Immobilien-Startseite */
body {
    margin: 0;
    padding: 0;
}

.hero-section {
    background: linear-gradient(135deg, #3b3b3b 0%, #8B0D14 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,800 1000,1000"/></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.search-section {
    background: white;
    padding: 60px 0;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    margin-top: -30px;
    position: relative;
    z-index: 3;
    border-radius: 20px 20px 0 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.search-container {
    max-width: none;
    margin: 0;
    padding: 0 60px;
    width: 100%;
    box-sizing: border-box;
}

.section-title {
    text-align: center;
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #3b3b3b, #8B0D14);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 3rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
	margin-top:1rem;
}

.properties-section {
    background: #f8f9fa;
    padding: 80px 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.properties-container {
    max-width: none;
    margin: 0;
    padding: 0 60px;
    width: 100%;
    box-sizing: border-box;
}

.features-section {
    background: white;
    padding: 80px 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.features-container {
    max-width: none;
    margin: 0;
    padding: 0 60px;
    width: 100%;
    box-sizing: border-box;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 80px;
    margin-top: 60px;
}

.feature-card {
    text-align: center;
    padding: 60px 50px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f1f3f5;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #3b3b3b, #8B0D14);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: white;
}

.feature-title {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #2c3e50;
}

.feature-description {
    color: #7f8c8d;
    line-height: 4rem;
    font-size: 3rem;
}

.cta-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.cta-container {
    max-width: none;
    margin: 0;
    padding: 0 60px;
    width: 100%;
    box-sizing: border-box;
}

.cta-title {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #3b3b3b, #8B0D14);
    color: white;
    padding: 25px 60px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(173, 17, 24, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(173, 17, 24, 0.6);
    color: white;
    text-decoration: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .search-container,
    .properties-container,
    .features-container,
    .cta-container {
        padding: 0 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 60px;
    }
    
    .feature-card {
        padding: 50px 40px;
    }
    
    .feature-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .feature-title {
        font-size: 2.4rem;
    }
    
    .feature-description {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .section-subtitle {
        font-size: 1.5rem;
    }
    
    .search-container,
    .properties-container,
    .features-container,
    .cta-container {
        padding: 0 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .feature-card {
        padding: 45px 30px;
    }
    
    .feature-icon {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
    }
    
    .feature-title {
        font-size: 2rem;
    }
    
    .feature-description {
        font-size: 1.4rem;
    }
    
    .cta-title {
        font-size: 2.8rem;
    }
    
    .cta-subtitle {
        font-size: 1.6rem;
    }
    
    .cta-button {
        font-size: 1.3rem;
        padding: 20px 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .section-subtitle {
        font-size: 1.3rem;
    }
    
    .search-container,
    .properties-container,
    .features-container,
    .cta-container {
        padding: 0 20px;
    }
    
    .feature-card {
        padding: 35px 25px;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .feature-title {
        font-size: 1.8rem;
    }
    
    .feature-description {
        font-size: 1.2rem;
    }
    
    .cta-title {
        font-size: 2.3rem;
    }
    
    .cta-subtitle {
        font-size: 1.4rem;
    }
    
    .cta-button {
        font-size: 1.2rem;
        padding: 18px 35px;
    }
}

/* Immonex Styling Anpassungen */
.inx-search-form-element {
    margin-bottom: 20px;
}

.inx-property-list {
    margin-top: 30px;
}

.inx-property-list .property-item {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.inx-property-list .property-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.pagination {
	justify-content: center;
}