:root {
    --primary: #af3e8f;
    --accent: #e5007e;
    --accent-light: #e98cb9;
    --dark: #4b2a1a;
    --bg: #fff7fb;
    --text: #2b2b2b;
    --muted: #777;
    --radius-lg: 1.5rem;
    --shadow-soft: 0 18px 40px rgba(0,0,0,0.08);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: #ffffff;
    line-height: 1.6;
}

body.rtl {
    direction: rtl;
    text-align: right;
    font-family: "Vazirmatn", "Tahoma", sans-serif;
}

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

/* Layout */

.container {
    width: min(1120px, 100% - 2.5rem);
    margin: 0 auto;
}

.section {
    padding: 4rem 0;
}

.section-alt {
    background: var(--bg);
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2rem;
    color: var(--dark);
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.75rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--dark);
}

.brand-logo {
    height: 52px;
    width: auto;
}

.brand-name {
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--muted);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.95rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--text);
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.2s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--accent);
    color: #fff;
    background: linear-gradient(120deg, var(--primary), var(--accent));
    box-shadow: 0 12px 24px rgba(229, 0, 126, 0.25);
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.85rem;
}

.lang-switch a {
    text-decoration: none;
    color: var(--muted);
    padding: 0.1rem 0.4rem;
    border-radius: 999px;
}

.lang-switch a.active {
    color: #fff;
    background: var(--primary);
}

/* Hero */

.hero {
    position: relative;
    padding: 5rem 0 4rem;
    background: url("/assets/img/bg.jpg") center/cover no-repeat;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(175,62,143,0.8), rgba(229,0,126,0.6));
}

.hero-content {
    position: relative;
    text-align: left;
}

body.rtl .hero-content {
    text-align: right;
}

.hero h1 {
    font-size: clamp(2.2rem, 3vw, 3rem);
    margin-bottom: 1rem;
}

.hero-subtitle {
    max-width: 40rem;
    font-size: 1rem;
    opacity: 0.95;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

/* Buttons */

.btn-primary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn-primary {
    background: linear-gradient(120deg, var(--primary), var(--accent));
    color: #fff;
    box-shadow: 0 16px 30px rgba(0,0,0,0.18);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.22);
}

.btn-outline {
    border-color: #fff;
    color: #fff;
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.12);
}

/* Content */

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
    gap: 2.5rem;
    align-items: center;
}

.image-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

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

/* Cards */

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.info-card {
    padding: 1.5rem;
    border-radius: 1.25rem;
    background: #fff;
    box-shadow: var(--shadow-soft);
    border-top: 4px solid var(--accent-light);
}

.info-card h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

/* Gallery */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.gallery-item {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

/* Map & Reviews */

.map-wrapper iframe {
    width: 100%;
    min-height: 260px;
    border-radius: 1rem;
}

.reviews-box {
    padding: 1.5rem;
    background: #fff;
    border-radius: 1.1rem;
    box-shadow: var(--shadow-soft);
}

.reviews-box p {
    margin: 0 0 0.75rem;
}

.reviews-box a {
    color: var(--primary);
    text-decoration: none;
}

.reviews-box a:hover {
    text-decoration: underline;
}

/* Kontakt */

.contact-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
}

.contact-list li {
    margin-bottom: 0.4rem;
}

.small {
    font-size: 0.9rem;
    color: var(--muted);
}

/* Footer */

.site-footer {
    background: #1a1010;
    color: #f6e9f5;
    padding-top: 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    padding-bottom: 1.5rem;
}

.site-footer a {
    color: #ffd9fb;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.opening-hours {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
}

.opening-hours li {
    display: flex;
    justify-content: space-between;
}

.hours-note {
    margin-top: 0.4rem;
    font-size: 0.8rem;
    color: #c7a6c5;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 0.75rem 0;
    font-size: 0.85rem;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-sep {
    margin: 0 0.5rem;
}



/* Responsive */

@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
    }
    .main-nav {
        display: none; /* für super kompakte mobile Variante, bei Bedarf Burger-Menü bauen */
    }
    .two-column {
        grid-template-columns: 1fr;
    }
    .hero {
        text-align: center;
    }
    .hero-content {
        text-align: center;
    }
    body.rtl .hero-content {
        text-align: center;
    }
    .hero-actions {
        justify-content: center;
    }
}
