/* ===================================
   Villa Alma - Light Theme
   Aman-inspired clean design
   =================================== */

:root {
    --white: #ffffff;
    --off-white: #fafafa;
    --cream: #f5f3ef;
    --light-gray: #e8e6e1;
    --mid-gray: #9a9a9a;
    --dark-gray: #666666;
    --charcoal: #333333;
    --black: #1a1a1a;
    --accent: #8b7355;
    --accent-light: #a08b6d;
    
    --font-serif: 'EB Garamond', Georgia, serif;
    --font-sans: 'Karla', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    font-size: 16px;
}

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

::selection {
    background: var(--accent);
    color: var(--white);
}

h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ===================================
   Navigation
   =================================== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 3rem;
    background: var(--white);
}

.nav-left {
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 0.15rem;
    text-align: right;
}

.nav-center {
    flex: 2;
    text-align: center;
}

.logo-link {
    display: inline-block;
    line-height: 0;
}

.logo-img {
    height: 90px;
    width: auto;
    transition: opacity 0.3s;
}

.logo-img:hover {
    opacity: 0.8;
}

.menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--charcoal);
    padding: 0.5rem 0;
}

.menu-btn .menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 22px;
    height: 16px;
}

.menu-btn .menu-icon span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--charcoal);
    transition: all 0.3s var(--transition);
}

.menu-btn:hover {
    color: var(--accent);
}

.menu-btn:hover .menu-icon span {
    background: var(--accent);
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.lang-btn {
    background: none;
    border: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--mid-gray);
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    transition: color 0.3s ease;
}

.lang-btn:hover {
    color: var(--dark-gray);
}

.lang-btn.active {
    color: var(--black);
}

.lang-divider {
    color: var(--light-gray);
    font-size: 0.75rem;
}

.nav-contact {
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: var(--dark-gray);
}

.nav-contact:hover {
    color: var(--accent);
}

/* ===================================
   Menu Overlay
   =================================== */
.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--transition);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-content {
    text-align: center;
    width: 100%;
    max-width: 600px;
    padding: 2rem;
}

.menu-links {
    list-style: none;
    margin-bottom: 4rem;
}

.menu-links li {
    margin: 0.5rem 0;
}

.menu-links a {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--charcoal);
    display: inline-block;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s;
}

.menu-links a::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s var(--transition);
}

.menu-links a:hover,
.menu-links a.active {
    color: var(--accent);
}

.menu-links a:hover::after,
.menu-links a.active::after {
    width: 100%;
}

.menu-footer {
    border-top: 1px solid var(--light-gray);
    padding-top: 2rem;
}

.menu-info p {
    font-size: 0.85rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.menu-info a {
    color: var(--accent);
}

/* Close button in menu */
.menu-close {
    position: absolute;
    top: 1.5rem;
    left: 3rem;
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-close::before,
.menu-close::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 1.5px;
    background: var(--charcoal);
    transition: background 0.3s;
}

.menu-close::before {
    transform: rotate(45deg);
}

.menu-close::after {
    transform: rotate(-45deg);
}

.menu-close:hover::before,
.menu-close:hover::after {
    background: var(--accent);
}

/* ===================================
   Pages
   =================================== */
.page {
    display: none;
    min-height: 100vh;
    padding-top: 70px;
}

.page.active {
    display: block;
    animation: fadeIn 0.5s var(--transition);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 5rem 2rem 3rem;
    border-bottom: 1px solid var(--light-gray);
}

.page-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--black);
    letter-spacing: 0.02em;
}

.coming-soon-badge {
    display: block;
    margin-top: 1rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
}

.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-intro {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--dark-gray);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

/* ===================================
   Home Page
   =================================== */
.page-home {
    padding-top: 70px;
}

.hero {
    height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/img16.png') center center / cover no-repeat;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.6) 40%,
        rgba(255, 255, 255, 0.75) 60%,
        rgba(255, 255, 255, 0.85) 100%
    );
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.hero-location {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.8);
}


.hero-tagline {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--charcoal);
    margin-bottom: 3rem;
    text-shadow: 0 1px 10px rgba(255, 255, 255, 0.6);
}

.hero-cta {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--charcoal);
    padding: 1rem 2.5rem;
    border: 1px solid var(--charcoal);
    transition: all 0.3s var(--transition);
}

.hero-cta:hover {
    background: var(--charcoal);
    color: var(--white);
}

.home-intro {
    padding: 6rem 2rem;
    text-align: center;
    background: var(--white);
}

.intro-content {
    max-width: 600px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.intro-content p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    line-height: 1.9;
    margin-bottom: 2rem;
}

.text-link {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    position: relative;
}

.text-link::after {
    content: ' →';
}

.text-link:hover {
    color: var(--accent-light);
}

/* ===================================
   Content Blocks
   =================================== */
.content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.content-block.reverse {
    direction: rtl;
}

.content-block.reverse > * {
    direction: ltr;
}

.content-image {
    aspect-ratio: 4/3;
    background: var(--cream);
    overflow: hidden;
}

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

.villa-image {
    background: url('images/img4.jpg') center center / cover no-repeat;
}

/* Image Carousel */
.image-carousel {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--cream);
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-slide img.portrait-top {
    object-fit: cover;
    object-position: center 30%;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    width: 48px;
    height: 48px;
    cursor: pointer;
    color: var(--white);
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
}

.carousel-arrow:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow svg {
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

.carousel-prev {
    left: 0.5rem;
}

.carousel-next {
    right: 0.5rem;
}

.carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.park-image {
    background: url('images/img15.png') center center / cover no-repeat;
}

.spitex-image {
    background: url('images/spitex2.png') center center / cover no-repeat;
}

.spitex-contact-image {
    background: url('images/julia.png') center top / cover no-repeat;
    aspect-ratio: 3/4;
    width: 250px;
    min-height: 280px;
    margin-left: auto;
}

.page-spitex .content-block:last-child {
    grid-template-columns: 1fr auto;
}

.see-image {
    background: linear-gradient(135deg, #d6e4f0 0%, #c4d6e6 100%);
}

/* Placeholder Images */
.placeholder-image {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--light-gray);
}

.placeholder-text {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mid-gray);
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    aspect-ratio: 4/3;
    background: var(--cream);
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Umgebung Sections */
.umgebung-section {
    margin-bottom: 5rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--light-gray);
}

.umgebung-section:last-of-type {
    border-bottom: none;
}

.section-heading {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light-gray);
}

.content-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.content-text p {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-text .btn {
    margin-top: 1.5rem;
}

/* Features */
.features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 4rem 0;
    border-top: 1px solid var(--light-gray);
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.feature p {
    font-size: 0.95rem;
    color: var(--dark-gray);
    line-height: 1.7;
}

/* ===================================
   Rooms
   =================================== */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.room-card {
    border: 1px solid var(--light-gray);
    transition: all 0.3s var(--transition);
}

.room-card:hover {
    border-color: var(--accent);
}

.room-card.available {
    border-color: var(--accent);
}

.room-image {
    aspect-ratio: 16/10;
    background: var(--cream);
}

.room-1 { background: linear-gradient(135deg, #f5eed6 0%, #e8e2c8 100%); }
.room-2 { background: linear-gradient(135deg, #e8e6f0 0%, #d8d6e4 100%); }
.room-3 { background: linear-gradient(135deg, #d6e4f0 0%, #c4d6e6 100%); }
.room-4 { background: linear-gradient(135deg, #dce8dc 0%, #c8dac8 100%); }

.room-details {
    padding: 1.5rem;
}

.room-floor {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
}

.room-details h3 {
    font-size: 1.3rem;
    margin: 0.5rem 0;
    color: var(--black);
}

.room-details p {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.room-status {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
}

.room-status.occupied {
    background: var(--light-gray);
    color: var(--dark-gray);
}

.room-status.available {
    background: var(--accent);
    color: var(--white);
}

/* Floor Plan */
.floor-plan {
    margin-bottom: 3rem;
    text-align: center;
}

.floor-plan img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.floor-plan-caption {
    font-size: 0.85rem;
    color: var(--mid-gray);
    font-style: italic;
    margin-top: 1rem;
}

/* Rooms List */
.rooms-list {
    background: var(--off-white);
    padding: 3rem;
}

.rooms-list > h3 {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--black);
}

.floor-group {
    margin-bottom: 2rem;
}

.floor-group h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.floor-group ul {
    list-style: none;
}

.floor-group li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.floor-group li.room-item {
    cursor: pointer;
    transition: all 0.3s var(--transition);
    padding: 0.75rem 0.5rem;
    margin: 0 -0.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.floor-group li.room-item:hover {
    background: var(--off-white);
    color: var(--accent);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot.occupied {
    background: #a65d5d;
}

.dot.available {
    background: #5d8a5d;
}

/* ===================================
   Services
   =================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    padding: 2.5rem;
    border: 1px solid var(--light-gray);
    transition: border-color 0.3s;
}

.service-card:hover {
    border-color: var(--accent);
}

.service-num {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--light-gray);
    display: block;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.service-card ul {
    list-style: none;
}

.service-card li {
    font-size: 0.9rem;
    color: var(--dark-gray);
    padding: 0.4rem 0;
    padding-left: 1rem;
    position: relative;
}

.service-card li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.8rem;
}

.btn-small {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    background: transparent;
    padding: 0.6rem 1rem;
    border: 1px solid var(--accent);
    cursor: pointer;
    transition: all 0.3s var(--transition);
    margin-top: 1rem;
}

.btn-small:hover {
    background: var(--accent);
    color: var(--white);
}

/* Download Section */
.download-section {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--light-gray);
}

.download-section p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--accent);
    padding: 1rem 2rem;
    border: 1px solid var(--accent);
    transition: all 0.3s var(--transition);
}

.download-btn svg {
    width: 18px;
    height: 18px;
}

.download-btn:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
}

/* ===================================
   Events
   =================================== */
/* Aktuelles Page Layout */
.page-events .page-content {
    max-width: 1400px;
}

.aktuelles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.aktuelles-column {
    min-width: 0;
}

.subsection-heading {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.news-empty {
    text-align: center;
    padding: 2rem;
    background: var(--off-white);
    border: 1px dashed var(--light-gray);
}

.news-empty p {
    font-style: italic;
    color: var(--mid-gray);
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.news-card {
    background: var(--off-white);
    padding: 1.5rem;
    border-left: 3px solid var(--gold);
}

.news-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.news-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--mid-gray);
    margin-bottom: 1rem;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.news-link::before {
    content: '↓';
    font-weight: bold;
}

@media (max-width: 992px) {
    .aktuelles-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.events-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-gray);
}

.events-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.events-empty {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--off-white);
    border: 1px dashed var(--light-gray);
}

.events-empty p {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--mid-gray);
    font-style: italic;
}

.events-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-card {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--light-gray);
    transition: all 0.3s var(--transition);
    cursor: pointer;
}

.event-card:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.event-view-photos {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--accent);
    transition: color 0.3s;
}

.event-card:hover .event-view-photos {
    color: var(--accent-light);
}

.event-card.past {
    opacity: 0.85;
}

.event-card.past:hover {
    opacity: 1;
}

.event-card.upcoming {
    border-left: 3px solid var(--accent);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding: 1rem;
    background: var(--off-white);
    text-align: center;
}

.event-day {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1;
    color: var(--black);
}

.event-month {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: 0.25rem;
}

.event-year {
    font-size: 0.7rem;
    color: var(--mid-gray);
    margin-top: 0.25rem;
}

.event-content {
    flex: 1;
}

.event-content h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.event-content p {
    font-size: 0.95rem;
    color: var(--dark-gray);
    line-height: 1.7;
}

.event-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--mid-gray);
    margin-top: 1rem;
}

.event-time svg {
    width: 16px;
    height: 16px;
}

/* Event Modal */
.modal-event {
    max-width: 95vw;
    width: 1400px;
}

.event-modal-date {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 1rem !important;
}

.event-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
}

.event-gallery-item {
    background: var(--cream);
    overflow: hidden;
}

.event-gallery-item img {
    max-height: 70vh;
    width: auto;
    height: auto;
    max-width: 100%;
}

.event-gallery-item img {
    display: block;
    transition: transform 0.4s var(--transition);
}

.event-gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .event-card {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .event-date {
        flex-direction: row;
        gap: 0.5rem;
        padding: 0.75rem;
        min-width: auto;
    }
    
    .event-day {
        font-size: 1.5rem;
    }
    
    .event-month {
        margin-top: 0;
    }
    
    .event-year {
        margin-top: 0;
    }
    
}

/* ===================================
   Quote
   =================================== */
.quote {
    text-align: center;
    padding: 4rem 2rem;
    margin-top: 4rem;
    border-top: 1px solid var(--light-gray);
}

.quote p {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-style: italic;
    color: var(--black);
}

/* ===================================
   Contact
   =================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.contact-block p {
    color: var(--dark-gray);
    line-height: 1.9;
}

.contact-block a {
    color: var(--charcoal);
    transition: color 0.3s;
}

.contact-block a:hover {
    color: var(--accent);
}

.person {
    margin-bottom: 1.5rem;
}

.person strong {
    display: block;
    color: var(--black);
}

.person span {
    display: block;
    font-size: 0.85rem;
    color: var(--mid-gray);
    margin-bottom: 0.25rem;
}

.person .person-education {
    font-size: 0.8rem;
    font-style: italic;
    color: var(--dark-gray);
}

.person a {
    font-size: 0.85rem;
}

.person .person-name-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.person .person-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #888;
    transition: color 0.3s, transform 0.3s;
}

.person .person-linkedin:hover {
    color: #0077b5;
    transform: scale(1.1);
}

.person .person-linkedin svg {
    width: 18px;
    height: 18px;
}

/* Form */
.contact-form-wrap {
    background: var(--off-white);
    padding: 2.5rem;
}

.form-field {
    margin-bottom: 1.5rem;
}

.form-field label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 0.8rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--light-gray);
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--charcoal);
    transition: border-color 0.3s;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-field textarea {
    resize: vertical;
    min-height: 100px;
}

.captcha-field {
    margin-bottom: 1.5rem;
    background: var(--off-white);
    padding: 1rem;
    border: 1px solid var(--light-gray);
}

.captcha-field label {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.captcha-field #captchaQuestion {
    color: var(--accent);
    font-size: 1.1rem;
}

.captcha-field input[type="number"] {
    width: 100px;
    padding: 0.6rem 0.8rem;
    border: 1px solid var(--light-gray);
    font-size: 1rem;
    background: var(--white);
}

/* Form Messages */
.form-message {
    display: none;
    padding: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    border-radius: 4px;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.btn {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--charcoal);
    background: transparent;
    padding: 1rem 2rem;
    border: 1px solid var(--charcoal);
    cursor: pointer;
    transition: all 0.3s var(--transition);
}

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

.btn.btn-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

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

/* Map */
.map {
    height: 400px;
    background: var(--cream);
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Jobs Section */
.jobs-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--light-gray);
}

.jobs-section .section-heading {
    margin-bottom: 2rem;
}

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

.job-card {
    padding: 2rem;
    border: 1px solid var(--light-gray);
    transition: border-color 0.3s;
}

.job-card:hover {
    border-color: var(--accent);
}

.job-card h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.job-card p {
    font-size: 0.95rem;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* ===================================
   Footer
   =================================== */
.footer {
    padding: 3rem 2rem;
    background: var(--off-white);
    border-top: 1px solid var(--light-gray);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-brand a {
    text-decoration: none;
    display: block;
}

.footer-brand h2 {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--dark-gray);
}

.footer-brand a:hover h2 {
    color: var(--warm-brown);
}

.footer-spitex {
    text-align: right;
}

.footer-spitex a {
    text-decoration: none;
    display: block;
}

.footer-spitex h2 {
    font-size: 1.3rem;
    color: var(--warm-brown);
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.footer-spitex p {
    font-size: 0.85rem;
    color: var(--dark-gray);
}

.footer-spitex a:hover h2 {
    color: var(--black);
}

.footer-legal {
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 2rem 2rem 0;
    text-align: center;
    border-top: 1px solid var(--light-gray);
    font-size: 0.85rem;
}

.footer-legal a {
    color: var(--mid-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--charcoal);
}

.footer-legal span {
    color: var(--light-gray);
    margin: 0 0.5rem;
}

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

.footer-social p {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mid-gray);
    margin-bottom: 0.75rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--charcoal);
    transition: color 0.3s;
}

.social-link svg {
    width: 24px;
    height: 24px;
}

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

.footer-info {
    text-align: right;
}

.footer-info p {
    font-size: 0.8rem;
    color: var(--mid-gray);
}

/* ===================================
   Modal
   =================================== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--transition);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    max-width: 800px;
    max-height: 85vh;
    width: 100%;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.4s var(--transition);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 10;
}

.modal-close::before,
.modal-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 1.5px;
    background: var(--charcoal);
    transition: background 0.3s;
}

.modal-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-close:hover::before,
.modal-close:hover::after {
    background: var(--accent);
}

.modal-body {
    padding: 3rem;
    max-height: 85vh;
    overflow-y: auto;
}

.modal-body h2 {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light-gray);
}

.modal-body h3 {
    font-size: 1.2rem;
    color: var(--accent);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.modal-body p {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.modal-body em {
    color: var(--mid-gray);
}

.source-citation {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-gray);
    font-size: 0.85rem;
    color: var(--mid-gray);
    font-style: italic;
}

.source-citation a {
    color: var(--accent);
}

.modal-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.modal-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--dark-gray);
    border-bottom: 1px solid var(--light-gray);
}

.modal-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* Small Modal */
.modal-small {
    max-width: 500px;
}

.modal-legal {
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-legal h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.modal-legal h3 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--warm-brown);
}

.modal-legal p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

/* Room Details */
.room-detail {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.room-detail:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mid-gray);
    flex-shrink: 0;
    width: 40%;
}

.detail-value {
    text-align: right;
    color: var(--charcoal);
    line-height: 1.6;
}

.status-occupied {
    color: #a65d5d;
}

.status-available {
    color: #5d8a5d;
    font-weight: 600;
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 992px) {
    .content-block,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-block.reverse {
        direction: ltr;
    }
    
    .features-row,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .rooms-grid,
    .image-gallery {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        padding: 0.5rem 1.5rem;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .nav-contact {
        display: none;
    }
    
    .menu-links a {
        font-size: 2rem;
    }
    
    .page-content {
        padding: 3rem 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .footer-spitex {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        letter-spacing: 0.05em;
    }
    
    .menu-btn span {
        display: none;
    }
    
    .rooms-list {
        padding: 2rem 1.5rem;
    }
    
    .service-card,
    .contact-form-wrap {
        padding: 1.5rem;
    }
    
    .modal-content {
        margin: 1rem;
        max-height: 90vh;
    }
    
    .modal-body {
        padding: 2rem 1.5rem;
    }
    
    .room-detail {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .detail-label {
        width: 100%;
    }
    
    .detail-value {
        text-align: left;
    }
    
    .section-heading {
        font-size: 1.5rem;
    }
    
    .page-header {
        padding: 3rem 1.5rem 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .download-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.7rem;
    }
}

/* ===================================
   Room Images & Lightbox
   =================================== */
.show-image-link {
    color: var(--warm-brown);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    cursor: pointer;
    margin-left: 0.5rem;
}

.show-image-link:first-child {
    margin-left: 0;
}

.show-image-link:hover {
    color: var(--charcoal);
    text-decoration: underline;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--light-gray);
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 4px;
    cursor: default;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 2rem;
    }
}
