/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Pastellige Luxus-Farbpalette */
    --cream: #F5F2ED;
    --beige: #E8E4DD;
    --soft-gold: #c9b896;
    --rose-gold: #d4a5a5;
    --sage: #9ba898;
    --soft-blue: #a8c5d1;
    --charcoal: #4a4a4a;
    --dark-grey: #2d2d2d;

    /* Schriftarten */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-sans);
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--cream);
    overflow-x: hidden;
}

/* ===== DEKORATIVE HINTERGRUNDKREISE ===== */
.bg-circle {
    position: fixed;
    border-radius: 50%;
    opacity: 0.08;
    z-index: -1;
    pointer-events: none;
}

.circle-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--soft-gold) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.circle-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--rose-gold) 0%, transparent 70%);
    bottom: 10%;
    left: -100px;
}

.circle-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--soft-blue) 0%, transparent 70%);
    top: 50%;
    right: -150px;
}

/* ===== NAVIGATION ===== */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: transparent;
}

.navbar {
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 25px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--dark-grey);
    margin-bottom: -5px;
}

.logo-subtitle {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--soft-gold);
    font-weight: 300;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-menu a {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--soft-gold);
    transition: width 0.3s ease;
}

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

.nav-cta {
    padding: 0.7rem 1.8rem;
    background-color: var(--soft-gold);
    color: white !important;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background-color: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 184, 150, 0.3);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--dark-grey);
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: var(--cream);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('bilder/pool.jpg') center/cover no-repeat;
    z-index: 0;
}

/* Dunkles Overlay für bessere Lesbarkeit */
.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(45, 45, 45, 0.5) 0%,
        rgba(74, 74, 74, 0.4) 50%,
        rgba(201, 184, 150, 0.3) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3.5rem 3rem;
    max-width: 1000px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    border-radius: 25px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

/* Alternative: Ohne Background-Box (für hellere Bilder) */
.hero-content.no-bg {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    letter-spacing: 4px;
    color: #f5d9a8;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.5rem;
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.5),
        0 4px 16px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(212, 165, 116, 0.4);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 5.5rem;
    font-weight: 300;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-description {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    display: inline-block;
    padding: 1.1rem 3.5rem;
    background: rgba(212, 165, 116, 0.95);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    letter-spacing: 2px;
    font-weight: 500;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #d4a574;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 165, 116, 0.6);
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-indicator span {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--charcoal);
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--soft-gold), transparent);
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0%, 100% { opacity: 0; transform: translateY(-20px); }
    50% { opacity: 1; transform: translateY(0); }
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
    text-align: center;
    padding: 4rem 0;
}

.section-divider svg {
    opacity: 0.6;
}

/* ===== CONTAINER & SECTIONS ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--soft-gold);
    font-weight: 400;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--dark-grey);
    line-height: 1.3;
}

/* ===== ROOMS SECTION ===== */
.rooms-section {
    background-color: white;
}

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

.room-card {
    background-color: var(--beige);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.room-image {
    height: 350px;
    overflow: hidden;
    position: relative;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.08);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--soft-blue) 0%, var(--sage) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.image-placeholder span {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: white;
    opacity: 0.7;
    letter-spacing: 2px;
}

.room-content {
    padding: 2.5rem;
}

.room-content h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--dark-grey);
    margin-bottom: 1rem;
    font-weight: 500;
}

.room-content p {
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.room-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.room-features span {
    padding: 0.4rem 1rem;
    background-color: white;
    color: var(--charcoal);
    font-size: 0.8rem;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: transparent;
    color: var(--soft-gold);
    text-decoration: none;
    border: 1.5px solid var(--soft-gold);
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--soft-gold);
    color: white;
}

/* ===== EXPERIENCE SECTION ===== */
.experience-section {
    background-color: var(--cream);
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.experience-content {
    padding-right: 2rem;
}

.experience-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--charcoal);
    margin-bottom: 3rem;
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.experience-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.experience-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--soft-gold);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.experience-item h4 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--dark-grey);
    margin-bottom: 0.3rem;
}

.experience-item p {
    color: var(--charcoal);
    font-size: 0.95rem;
}

.image-frame {
    position: relative;
    padding: 20px;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--soft-gold);
    border-radius: 8px;
    opacity: 0.3;
    transform: translate(-10px, -10px);
}

.experience-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.image-placeholder.large {
    height: 500px;
    border-radius: 8px;
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
    background: linear-gradient(135deg, rgba(155, 168, 152, 0.1) 0%, rgba(212, 165, 165, 0.1) 100%);
    padding: 6rem 0;
}

.testimonial-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 3rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.quote-icon {
    font-family: var(--font-serif);
    font-size: 8rem;
    color: var(--soft-gold);
    opacity: 0.2;
    line-height: 0;
    margin-bottom: 2rem;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author h4 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: var(--dark-grey);
    margin-bottom: 0.3rem;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: var(--soft-gold);
    letter-spacing: 1px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.contact-content p {
    margin-bottom: 3rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--dark-grey);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--charcoal);
    font-size: 1rem;
}

/* ===== CONTACT FORM ===== */
.contact-form-wrapper {
    background-color: var(--beige);
    padding: 3rem;
    border-radius: 8px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(74, 74, 74, 0.2);
    border-radius: 6px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    background-color: white;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--soft-gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    width: 100%;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark-grey);
    color: var(--beige);
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(232, 228, 221, 0.2);
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    letter-spacing: 3px;
    color: var(--beige);
    margin-bottom: 0.3rem;
}

.footer-logo p {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--soft-gold);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--beige);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(232, 228, 221, 0.6);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }

    .section-title {
        font-size: 3rem;
    }

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

    .experience-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(245, 242, 237, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-content {
        padding: 3rem 2rem;
        margin: 0 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .scroll-indicator {
        bottom: 30px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .room-card {
        min-width: auto;
    }

    .experience-content {
        padding-right: 0;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    section {
        padding: 4rem 0;
    }
}
