/* ===== Reset & Base Styles ===== */
html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}
*, *:before, *:after {
    box-sizing: inherit;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-top: 0;
}
a {
    text-decoration: none;
    color: #0066cc;
    transition: all 0.3s ease;
}
img {
    max-width: 100%;
    height: auto;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.text-center {
    text-align: center;
}

/* ===== Header Styles ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 15px 0;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-logo img {
    max-height: 50px;
}
.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-navigation li {
    margin-left: 30px;
}
.main-navigation a {
    color: #333;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}
.main-navigation a:hover {
    color: #0066cc;
}
.main-navigation a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #0066cc;
    transition: width 0.3s ease;
}
.main-navigation a:hover:after {
    width: 100%;
}

/* ===== Hero Section ===== */
.hero-section {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/placeholder-haus1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    padding-top: 80px;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
}
.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
	color: #0066cc;
}
.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
}
.cta-button {
    display: inline-block;
    background: #0066cc;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.cta-button:hover {
    background: #0052a3;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
	color: #222;
}

/* ===== Pricing Section ===== */
.pricing-section {
    padding: 80px 0;
    background: #f9f9f9;
}
.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}
.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #0066cc;
}
.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}
.price-tables-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.price-table-wrapper {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.price-table-wrapper:hover {
    transform: translateY(-10px);
}
.price-table-title {
    background: #0066cc;
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 1.5rem;
}
.price-table {
    width: 100%;
    border-collapse: collapse;
}
.price-table th, .price-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}
.price-table th {
    background: #f5f5f5;
    font-weight: 600;
}
.price-table tr:last-child td {
    border-bottom: none;
}
.price-highlight {
    color: #0066cc;
    font-weight: 700;
}
.delivery-notice {
    margin-top: 30px;
    padding: 15px;
    background: #fff8e1;
    border-left: 4px solid #ffc107;
    font-style: italic;
}

/* ===== Features Section ===== */
.features-section {
    padding: 80px 0;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-10px);
}
.feature-icon {
    font-size: 3rem;
    color: #0066cc;
    margin-bottom: 20px;
}
.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* ===== Modulhaus Grid ===== */
.modulhaus-grid-section {
    padding: 80px 0;
    background: #f9f9f9;
}
.modulhaus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.modulhaus-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.modulhaus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.modulhaus-image {
    height: 250px;
    overflow: hidden;
}
.modulhaus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.modulhaus-card:hover .modulhaus-image img {
    transform: scale(1.05);
}
.modulhaus-content {
    padding: 25px;
}
.modulhaus-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.modulhaus-size {
    color: #666;
    margin-bottom: 15px;
}
.modulhaus-price {
    font-size: 1.8rem;
    color: #0066cc;
    font-weight: 700;
    margin: 15px 0;
}
.modulhaus-link {
    display: inline-block;
    padding: 10px 20px;
    background: #0066cc;
    color: white;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.modulhaus-link:hover {
    background: #0052a3;
}

/* ===== Footer ===== */
.site-footer {
    background: #222;
    color: #fff;
    padding: 60px 0 30px;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-widget {
    flex: 1;
    min-width: 250px;
}
.footer-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: #aaa;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: #fff;
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 0.9rem;
}