/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #222222;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

/* CSS Variables */
:root {
    --primary-white: #FFFFFF;
    --soft-gray: #F4F4F4;
    --beige: #CBAA7A;
    --dark-gray: #222222;
    --light-gray: #666666;
    --border-gray: #E0E0E0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --max-width: 1200px;
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--light-gray);
    font-size: 16px;
    line-height: 1.7;
}

/* Buttons */
.cta-button, .room-button, .reservation-button, .contact-submit-btn, .reservation-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background-color: var(--beige);
    color: var(--primary-white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
    min-height: 56px;
}

.cta-button:hover, .room-button:hover, .reservation-button:hover, 
.contact-submit-btn:hover, .reservation-submit-btn:hover {
    background-color: #B8956A;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Telefon Button Style */
.cta-button[href*="tel:"] {
    background-color: #007AFF;
}

.cta-button[href*="tel:"]:hover {
    background-color: #0056CC;
}

.room-button.secondary {
    background-color: transparent;
    color: var(--beige);
    border: 2px solid var(--beige);
}

.room-button.secondary:hover {
    background-color: var(--beige);
    color: var(--primary-white);
}

.room-button.primary {
    background-color: var(--beige);
    color: var(--primary-white);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.5rem 0;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-gray);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo h2 {
    color: var(--beige);
    margin: 0;
    font-size: 1.5rem;
}

.nav-logo-img {
    height: 48px;
    max-height: 48px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--beige);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--beige);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--dark-gray);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide.prev {
    transform: translateX(-100%);
}

.slide-bg {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}

.slide.active .slide-image {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(203, 170, 122, 0.3) 0%,
        rgba(34, 34, 34, 0.7) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

/* Slider Navigation */
.slider-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 5;
    pointer-events: none;
}

.slider-arrow {
    width: 60px;
    height: 60px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.8;
    pointer-events: all;
}

.slider-arrow:hover {
    background: rgba(203, 170, 122, 0.8);
    transform: scale(1.1);
    opacity: 1;
}

.slider-arrow svg {
    width: 28px;
    height: 28px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 5;
}

.dot {
    width: 14px;
    height: 14px;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.dot.active {
    background: var(--beige);
    transform: scale(1.3);
}

.dot::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.dot.active::after {
    border-color: rgba(203, 170, 122, 0.3);
}

/* Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 5;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--beige) 0%, #B8956A 100%);
    width: 0%;
    transition: none;
}

.progress-bar.animate {
    animation: progressAnimation 5s linear;
}

@keyframes progressAnimation {
    from { width: 0%; }
    to { width: 100%; }
}

/* Play/Pause Button */
.play-pause-btn {
    position: absolute;
    top: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 5;
    opacity: 0.8;
}

.play-pause-btn:hover {
    background: rgba(203, 170, 122, 0.8);
    opacity: 1;
    transform: scale(1.05);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 30px;
}

.hero-text-content {
    animation: heroContentSlideUp 1.2s ease-out 0.5s both;
}

@keyframes heroContentSlideUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--beige) 0%, #B8956A 100%);
    box-shadow: 0 8px 25px rgba(203, 170, 122, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(203, 170, 122, 0.4);
}

.cta-button.whatsapp {
    background: linear-gradient(135deg, #007AFF 0%, #0056CC 100%);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
}

.cta-button.whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 122, 255, 0.4);
}

/* Scroll Down Indicator */
.scroll-down-indicator {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: fadeInUp 1.5s ease-out 2s both;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-down-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.scroll-down-arrow:hover {
    color: white;
    transform: translateY(-5px);
}

.scroll-text {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    text-align: center;
    margin-bottom: 5px;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: bounceArrow 2s infinite;
    transition: all 0.3s ease;
}

.scroll-down-arrow:hover .scroll-arrow {
    background: rgba(203, 170, 122, 0.2);
    border-color: var(--beige);
    transform: scale(1.1);
}

@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Mobile Responsive for Hero Slider */
@media (max-width: 768px) {
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .slider-navigation {
        padding: 0 20px;
    }
    
    .slider-arrow {
        width: 50px;
        height: 50px;
    }
    
    .slider-arrow svg {
        width: 22px;
        height: 22px;
    }
    
    .slider-dots {
        bottom: 30px;
        gap: 12px;
    }
    
    .dot {
        width: 12px;
        height: 12px;
    }
    
    .play-pause-btn {
        top: 90px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .scroll-down-indicator {
        bottom: 85px;
    }
    
    .scroll-text {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .scroll-arrow {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 60vh;
        min-height: 450px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .slider-navigation {
        padding: 0 15px;
    }
    
    .slider-arrow {
        width: 45px;
        height: 45px;
    }
    
    .slider-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .slider-dots {
        bottom: 25px;
        gap: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .play-pause-btn {
        width: 40px;
        height: 40px;
    }
    
    .scroll-down-indicator {
        bottom: 50px;
    }
    
    .scroll-text {
        font-size: 11px;
        margin-bottom: 6px;
    }
    
    .scroll-arrow {
        width: 32px;
        height: 32px;
    }
    
    .scroll-arrow svg {
        width: 18px;
        height: 18px;
    }
}

/* Sections */
section {
    padding: 80px 0;
}

.page-header {
    background: #f7f7f7;
    padding: 120px 0 60px;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--light-gray);
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--dark-gray);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--beige);
}

/* About Section */
.about {
    background-color: var(--soft-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.owner-image {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Featured Rooms */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.room-card {
    background-color: var(--primary-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.room-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--beige);
    color: var(--primary-white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.room-info {
    padding: 1.5rem;
}

.room-name {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.room-description {
    color: var(--light-gray);
    margin-bottom: 1rem;
    font-size: 16px;
    line-height: 1.6;
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: var(--light-gray);
}

.feature svg {
    color: var(--beige);
}

.room-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--beige);
    margin-bottom: 1rem;
}

.price-period {
    font-size: 0.9rem;
    color: var(--light-gray);
    font-weight: 400;
}

.room-availability {
    background: linear-gradient(135deg, var(--beige), #B8956A);
    color: var(--primary-white);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    margin: 1rem 0;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(203, 170, 122, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.room-availability::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.room-availability:hover::before {
    left: 100%;
}

.rental-badge {
    background: linear-gradient(135deg, var(--beige), #B8956A);
    color: var(--primary-white);
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.room-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.room-actions .room-button {
    flex: 1;
    min-width: 120px;
}

/* Amenities */
.amenities {
    background-color: var(--soft-gray);
}

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

.amenity-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--primary-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.amenity-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.amenity-icon {
    width: 60px;
    height: 60px;
    background-color: var(--beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-white);
}

.amenity-title {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.amenity-description {
    color: var(--light-gray);
    font-size: 16px;
    line-height: 1.6;
}

/* Reviews */
.reviews-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.review-card {
    display: none;
    text-align: center;
    padding: 2rem;
    background-color: var(--soft-gray);
    border-radius: var(--border-radius);
    margin: 0 1rem;
}

.review-card.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.review-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.author-name {
    font-size: 1rem;
    color: var(--dark-gray);
    margin: 0;
}

.review-rating {
    color: #FFD700;
    font-size: 1.2rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border: none;
    background-color: var(--beige);
    color: var(--primary-white);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn:hover {
    background-color: #B8956A;
    transform: scale(1.1);
}

/* Filters */
.filters {
    background-color: var(--soft-gray);
    padding: 2rem 0;
}

.filter-controls {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 500;
    color: var(--dark-gray);
}

.filter-select {
    padding: 10px 15px;
    border: 1px solid var(--border-gray);
    border-radius: var(--border-radius);
    background-color: var(--primary-white);
    color: var(--dark-gray);
    font-size: 1rem;
    min-width: 200px;
}

/* Room Detail */
.room-detail {
    padding: 120px 0 80px;
}

.room-gallery {
    margin-bottom: 3rem;
}

.gallery-main {
    position: relative;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 1rem;
}

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

.gallery-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
}

.gallery-btn {
    width: 50px;
    height: 50px;
    border: none;
    background-color: rgba(203, 170, 122, 0.8);
    color: var(--primary-white);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-btn:hover {
    background-color: var(--beige);
}

.gallery-thumbnails {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.thumbnail {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius);
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
    border: 2px solid transparent;
}

.thumbnail:hover, .thumbnail.active {
    opacity: 1;
    border-color: var(--beige);
}

.room-detail-content {
    max-width: 800px;
    margin: 0 auto;
}

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.room-title {
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin: 0;
}

.room-price-large {
    text-align: right;
}

.room-price-large .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--beige);
}

.room-price-large .period {
    font-size: 1rem;
    color: var(--light-gray);
}

.room-features-detail {
    margin: 3rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background-color: var(--soft-gray);
    border-radius: var(--border-radius);
}

.feature-item svg {
    color: var(--beige);
}

/* Price Table */
.price-table {
    margin: 3rem 0;
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--primary-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.price-table th,
.price-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-gray);
}

.price-table th {
    background-color: var(--beige);
    color: var(--primary-white);
    font-weight: 600;
}

.price-table tr:last-child td {
    border-bottom: none;
}

/* Calendar */
.availability-section {
    margin: 3rem 0;
}

.calendar-container {
    background-color: var(--primary-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.calendar-nav {
    width: 40px;
    height: 40px;
    border: none;
    background-color: var(--beige);
    color: var(--primary-white);
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.calendar-nav:hover {
    background-color: #B8956A;
}

.calendar-title {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin: 0;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 1rem;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 3px;
}

.legend-color.available {
    background-color: #4CAF50;
}

.legend-color.booked {
    background-color: #F44336;
}

.legend-color.selected {
    background-color: var(--beige);
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 16px;
    color: var(--dark-gray);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-gray);
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
    background-color: var(--primary-white);
}

.form-input:focus {
    outline: none;
    border-color: var(--beige);
    box-shadow: 0 0 0 3px rgba(203, 170, 122, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Reservation */
.reservation-form-section {
    padding: 120px 0 80px;
    background-color: var(--soft-gray);
}

.reservation-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.form-section {
    background-color: var(--primary-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-title {
    font-size: 1.8rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.summary-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.reservation-summary {
    background-color: var(--primary-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
}

.summary-label {
    color: var(--light-gray);
}

.summary-value {
    font-weight: 500;
    color: var(--dark-gray);
}

.summary-divider {
    height: 1px;
    background-color: var(--border-gray);
    margin: 1rem 0;
}

.summary-item.total {
    font-size: 1.2rem;
    font-weight: 600;
    border-top: 2px solid var(--beige);
    padding-top: 1rem;
    margin-top: 1rem;
}

.summary-item.total .summary-value {
    color: var(--beige);
}

.info-box {
    background-color: var(--primary-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.info-box h4 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.info-box ul {
    list-style: none;
    margin-bottom: 1rem;
}

.info-box li {
    margin-bottom: 0.5rem;
    color: var(--light-gray);
}

.info-note {
    font-size: 0.9rem;
    color: var(--light-gray);
    font-style: italic;
}

/* How It Works */
.how-it-works {
    background-color: var(--soft-gray);
}

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

.step-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--primary-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--beige);
    color: var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1rem;
}

.step-title {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.step-description {
    color: var(--light-gray);
}

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

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

.contact-form-section {
    background-color: var(--soft-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.contact-info-section {
    padding: 2rem;
}

.info-title {
    font-size: 1.8rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.contact-info-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p {
    color: var(--light-gray);
    margin-bottom: 0.3rem;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--beige);
    font-weight: 500;
}

.working-hours {
    margin-top: 2rem;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--primary-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hours-table th,
.hours-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-gray);
}

.hours-table th {
    background-color: var(--soft-gray);
    color: var(--dark-gray);
    font-weight: 600;
}

/* Map */
.map-section {
    background-color: var(--soft-gray);
}

.map-container-large {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.map-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.map-info-item {
    background-color: var(--primary-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.map-info-item h4 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.map-info-item ul {
    list-style: none;
}

.map-info-item li {
    margin-bottom: 0.5rem;
    color: var(--light-gray);
}

/* FAQ */
.faq-section {
    padding: 80px 0;
}

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

.faq-item {
    background-color: var(--primary-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.faq-question {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-answer {
    color: var(--light-gray);
    font-size: 16px;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: var(--primary-white);
    padding: 3rem 0 1rem;
}

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

.footer-title {
    color: var(--beige);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-subtitle {
    color: var(--primary-white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: var(--beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background-color: #B8956A;
    transform: scale(1.1);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Telefon Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #007AFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    text-decoration: none;
    box-shadow: var(--shadow-hover);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-button:hover {
    transform: scale(1.1);
    background-color: #0056CC;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background-color: var(--dark-gray);
    color: var(--primary-white);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    z-index: 1001;
    transform: translateX(400px);
    transition: var(--transition);
}

.toast.show {
    transform: translateX(0);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Lazy Loading */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Typography */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 1.4rem;
        color: #fff;
        line-height: 1.3;
        max-width: 100%;
        padding: 0 10px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        color: #fff;
        line-height: 1.4;
        max-width: 100%;
        padding: 0 10px;
    }

    .hero-content {
        gap: 0.8rem;
    }

    .hero-content .cta-button {
        min-width: 180px;
        padding: 14px 20px;
        font-size: 16px;
        margin: 0.3rem;
        position: relative;
        top: -10px;
    }

    .page-title {
        font-size: 2rem;
    }

    /* Sections */
    section {
        padding: 60px 0;
    }

    .page-header {
        padding: 100px 0 40px;
    }

    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .room-actions {
        flex-direction: column;
    }

    /* Amenities */
    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Reservation */
    .reservation-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .reservation-summary {
        position: static;
    }

    /* Contact */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Room Detail */
    .room-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .room-price-large {
        text-align: left;
    }

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

    .gallery-thumbnails {
        flex-wrap: wrap;
    }

    /* Map */
    .map-info {
        grid-template-columns: 1fr;
    }

    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Steps */
    .steps-grid {
        grid-template-columns: 1fr;
    }

    /* Filter */
    .filter-controls {
        flex-direction: column;
        align-items: center;
    }

    /* Calendar */
    .calendar-header {
        flex-wrap: wrap;
        gap: 1rem;
    }

    /* Telefon Button */
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    /* Toast */
    .toast {
        bottom: 80px;
        right: 20px;
        left: 20px;
        transform: translateY(200px);
    }

    .toast.show {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-content {
        padding: 0 5px;
    }

    .hero-title {
        font-size: 1.3rem;
        line-height: 1.4;
        padding: 0 5px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
        padding: 0 5px;
    }

    .hero-content {
        gap: 0.6rem;
    }

    .hero-content .cta-button {
        min-width: 160px;
        padding: 12px 16px;
        font-size: 14px;
        margin: 0.2rem;
        white-space: nowrap;
        text-align: center;
    }

    .cta-button, .room-button, .reservation-button {
        padding: 12px 20px;
        font-size: 14px;
    }

    .room-card {
        margin: 0 10px;
    }

    .amenity-item, .step-item, .faq-item {
        padding: 1.5rem;
    }

    .form-section, .reservation-summary, .info-box {
        padding: 1.5rem;
    }

    .gallery-main {
        height: 250px;
    }

    .thumbnail {
        width: 60px;
        height: 50px;
    }
}

