/* ===== MODERN OVERRIDE STYLES ===== */

/* Typography */
body {
    font-family: 'Inter', 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Raleway', serif;
    font-weight: 600;
    color: #1a1a2e;
    text-transform: none;
}

/* Header Modern */
#header #nav-section {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    border-bottom: none;
    transition: all 0.3s ease;
    min-height: auto;
}

#header #nav-section .col-sm-12 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
}

#header #nav-section .row {
    margin: 0;
}

#header #nav-section.shrink {
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

#header .nav-logo {
    float: none;
    height: auto;
    margin: 0;
}

#header .nav-logo img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

#header .navbar {
    float: none;
    margin: 0;
}

#header #nav-mobile-btn {
    float: none;
    margin: 0;
}

/* Mobile Menu - von rechts */
.nav-mobile {
    left: auto;
    right: 0;
    transform: translate3d(100%, 0, 0);
    -webkit-transform: translate3d(100%, 0, 0);
    z-index: 9999;
}

.nav-mobile.open {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
}

#wrapper.open {
    transform: translate3d(-300px, 0, 0);
    -webkit-transform: translate3d(-300px, 0, 0);
}

#header .navbar-nav > li > a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #1a1a2e;
    padding: 10px 20px;
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
}

#header .navbar-nav > li > a:hover,
#header .navbar-nav > li.active > a {
    color: #c0392b;
    border-bottom-color: #c0392b;
    background: transparent;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 85vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.7) 0%, rgba(26,26,46,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 6px;
    margin-bottom: 15px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.btn-hero {
    display: inline-block;
    padding: 14px 45px;
    height: auto;
    line-height: normal;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-hero:hover {
    background: #fff;
    color: #1a1a2e;
    text-decoration: none;
}

/* Section Features */
.section-features {
    padding: 100px 0;
    background: #fff;
}

.modern-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    color: #1a1a2e;
}

.modern-title::before {
    display: none;
}

.modern-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #c0392b;
    margin: 20px auto 0;
    position: static;
}

.feature-card {
    text-align: center;
    padding: 40px 25px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    background: #fff;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
}

.feature-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a2e;
    text-transform: none;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* CTA Section */
.section-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
}

.cta-box {
    text-align: center;
}

.cta-box h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 35px;
    line-height: 1.4;
}

.btn-cta {
    display: inline-block;
    padding: 16px 50px;
    height: auto;
    line-height: normal;
    background: #c0392b;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-cta:hover {
    background: #e74c3c;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(192,57,43,0.3);
    text-decoration: none;
}

/* About Section */
.section-about {
    padding: 100px 0;
    background: #fff;
}

.section-about h2 {
    font-size: 32px;
    margin-bottom: 25px;
}

.section-about p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.about-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* Highlight Section */
.section-highlight {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-highlight h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.highlight-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c0392b;
    margin-bottom: 25px;
}

.highlight-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    color: #555;
    line-height: 1.9;
}

/* Tenants Section */
.section-tenants {
    padding: 100px 0;
    background: #fff;
}

.tenants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.tenant-item {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    aspect-ratio: 1;
}

.tenant-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-color: transparent;
}

.tenant-item img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.tenant-item:hover img {
    filter: grayscale(0%);
}

/* Footer Modern */
#footer {
    background: #1a1a2e;
    color: rgba(255,255,255,0.7);
    padding: 30px 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand img {
    max-height: 35px;
    opacity: 0.8;
}

.footer-contact {
    display: flex;
    gap: 25px;
    font-size: 13px;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 15px;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

/* Page Title Bar (Subpages) */
.parallax.colored-bg {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%) !important;
    padding: 60px 0;
}

.parallax.colored-bg .page-title {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 36px;
    text-transform: none;
}

.parallax.colored-bg .breadcrumb {
    background: transparent;
}

.parallax.colored-bg .breadcrumb li a {
    color: rgba(255,255,255,0.7);
}

/* Content Area */
.content {
    padding: 60px 0;
}

.content .main h1 {
    font-size: 28px;
    margin-bottom: 25px;
}

.content .main p {
    line-height: 1.8;
    color: #555;
}

.content .main h4, .content .main h5 {
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-intro {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
}

.contact-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.contact-intro p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 500px;
    margin: 0 auto;
}

.contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transform: translateY(-3px);
    border-color: transparent;
}

.contact-card-photo img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #1a1a2e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.contact-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.contact-card-subtitle {
    color: #c0392b;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.contact-card-body p {
    color: #666;
    line-height: 1.7;
    font-size: 14px;
}

.contact-card-links {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-card-links a {
    color: #1a1a2e;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-card-links a:hover {
    color: #c0392b;
    text-decoration: none;
}

.contact-card-links a i {
    width: 20px;
    color: #c0392b;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Buttons Override */
.btn-default {
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .hero-banner {
        height: 60vh;
    }

    .section-features,
    .section-cta,
    .section-about,
    .section-highlight,
    .section-tenants {
        padding: 60px 0;
    }

    .modern-title {
        font-size: 28px;
    }

    .cta-box h2 {
        font-size: 26px;
    }

    .tenants-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .tenant-item {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .tenants-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
