/*
 * Galerie Himmelsweg - Neues Design 2026
 * Elegant & Modern
 */

:root {
    --primary: #2c3e50;
    --gold: #c9a227;
    --dark: #1a1a1a;
    --light: #f8f7f5;
    --gray: #6c757d;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--primary);
    background: var(--white);
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--dark);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 2px solid var(--dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background: transparent;
    color: var(--dark);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
}

.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
}

.link {
    font-weight: 600;
    color: var(--gold);
}

.link:hover {
    color: var(--dark);
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    z-index: 1000;
    padding: 12px 0;
    overflow: visible;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
}

.header .logo img {
    height: 90px;
    margin-top: -10px;
    margin-bottom: -30px;
}

.nav ul {
    display: flex;
    gap: 32px;
}

.nav a {
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    opacity: 0.85;
}

.nav a:hover,
.nav a.active {
    opacity: 1;
    color: var(--gold);
}

/* Dropdown Menu */
.nav > ul > li {
    position: relative;
}

.nav .dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav .dropdown-toggle::after {
    content: '▾';
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav .dropdown-toggle.open::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background: var(--dark);
    min-width: 200px;
    padding: 12px 0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown-menu.open,
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 24px;
    font-size: 13px;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dropdown-menu a:hover {
    background: rgba(255,255,255,0.05);
    color: var(--gold);
}

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

.menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    z-index: 2000;
    padding: 80px 24px 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu .close-btn {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 36px;
    cursor: pointer;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu a {
    display: block;
    color: var(--white);
    font-size: 20px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Mobile Submenu */
.mobile-submenu {
    display: none;
    padding-left: 20px;
    background: rgba(255,255,255,0.05);
    margin: 0 -24px;
    padding: 0 24px 0 44px;
}

.mobile-submenu.open,
.mobile-submenu.show {
    display: block;
}

.mobile-submenu a {
    font-size: 16px;
    padding: 12px 0;
    opacity: 0.8;
}

.mobile-submenu a:hover {
    opacity: 1;
    color: var(--gold);
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ========== HERO ========== */
.hero {
    padding: 140px 0 80px;
    background: var(--white);
    overflow: visible;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 52px;
    margin-bottom: 24px;
    color: var(--dark);
}

.hero-text h1 span {
    color: var(--gray);
    font-weight: 400;
}

.hero-text p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-image img {
    border-radius: 0;
    box-shadow: none;
    transform: scale(1.2);
    transform-origin: center center;
}

/* ========== ABOUT ========== */
.about {
    padding: 100px 0;
    background: var(--light);
}

.about-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    border-radius: 8px;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 16px;
}

/* ========== SAVITRI ========== */
.savitri {
    padding: 100px 0;
    background: var(--dark);
    color: var(--white);
}

.savitri-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: center;
}

.savitri-text .label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.savitri-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.savitri-text .gold {
    color: var(--gold);
}

.savitri-text p {
    opacity: 0.8;
    margin-bottom: 32px;
}

.savitri .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.savitri .btn-outline:hover {
    background: var(--white);
    color: var(--dark);
}

.savitri-image img {
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* ========== INFO BANNER ========== */
.info-banner {
    padding: 60px 0;
    background: var(--gold);
    color: var(--white);
}

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

.info-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.info-item p {
    font-size: 15px;
    opacity: 0.9;
}

/* ========== PRODUCTS ========== */
.products {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--gray);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: var(--light);
}

.product-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card span {
    display: block;
    padding: 16px;
    text-align: center;
    font-weight: 600;
    background: var(--white);
}

.center-btn {
    text-align: center;
    margin-top: 50px;
}

/* ========== CTA ========== */
.cta {
    padding: 60px 0;
    background: var(--light);
}

.cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 50px;
    background: var(--white);
    border: 3px solid var(--dark);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-box:hover {
    background: var(--dark);
    color: var(--white);
}

.cta-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.cta-arrow {
    font-size: 32px;
}

/* ========== VIDEO ========== */
.video {
    padding: 100px 0;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
    height: 80px;
    margin-bottom: 20px;
    position: static;
}

.footer-brand p {
    opacity: 0.7;
    font-size: 14px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    opacity: 0.7;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold);
}

.footer-contact p {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 12px;
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.6;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 13px;
    opacity: 0.6;
}

.footer-legal a:hover {
    opacity: 1;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .hero-image {
        order: -1;
    }

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

    .about-image {
        max-width: 300px;
    }

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

    .savitri-image {
        order: -1;
        max-width: 350px;
    }

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

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

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

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

    .product-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px;
    }

    .cta-text {
        font-size: 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand img {
        margin: 0 auto 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
    }
}

/* ========== PAGE CONTENT ========== */
.page-content {
    padding: 120px 0 80px;
}

.page-content .container {
    max-width: 900px;
}

.page-title {
    font-size: 42px;
    margin-bottom: 32px;
}

.page-content p {
    margin-bottom: 20px;
}

.page-content h2 {
    font-size: 28px;
    margin: 40px 0 16px;
}

.page-content h3 {
    font-size: 22px;
    margin: 32px 0 12px;
}

.row {
    display: flex;
    gap: 40px;
    margin: 40px 0;
}

.col-1-2 {
    flex: 1;
}

@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }
}
