/* ===================================
   Modern Minimalistic Hotel Design
   =================================== */

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

:root {
    /* Colors - Minimal & Elegant */
    --primary: #2c3e50;
    --secondary: #34495e;
    --accent: #c0936d;
    --light: #f8f9fa;
    --dark: #1a1a1a;
    --white: #ffffff;
    --gray: #6c7a7b;
    --border: #e1e8ed;

    /* Typography */
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Georgia', serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

/* ===================================
   Accessibility - Skip Link
   =================================== */

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
    border-radius: 0 0 4px 0;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

/* ===================================
   Container
   =================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===================================
   Navigation
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-menu a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

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

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

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

.nav-btn {
    background: var(--accent);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
}

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

.nav-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    height: 100vh;
    min-height: 600px;
    background: #000 url('../images/home_hotelroessle.jpg') center/cover no-repeat;
    background-image: image-set(
        url('../images/optimized/home_hotelroessle.avif') type('image/avif'),
        url('../images/optimized/home_hotelroessle.webp') type('image/webp'),
        url('../images/home_hotelroessle.jpg') type('image/jpeg')
    );
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 1;
    max-width: 800px;
    padding: var(--spacing-md);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: var(--spacing-sm);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

/* ===================================
   Buttons
   =================================== */

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    animation: fadeInUp 1s ease 0.4s both;
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* ===================================
   Section Styles
   =================================== */

section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--primary);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: var(--spacing-lg);
    font-weight: 300;
}

/* ===================================
   About Section
   =================================== */

.section-about {
    background: var(--light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--secondary);
    margin-bottom: var(--spacing-md);
}

.badges {
    display: flex;
    /* gap: var(--spacing-md); */
    gap: 1.5rem;
    margin-top: var(--spacing-md);
    align-items: center;
}

.badge {
    background: var(--accent);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-logo {
    display: inline-block;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.badge-logo:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.badge-logo img {
    height: 30px;
    width: auto;
    display: block;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.feature-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
    color: var(--primary);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--gray);
}

/* ===================================
   Rooms Section
   =================================== */

.section-rooms {
    background: var(--white);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.room-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
}

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

.room-card.featured {
    border: 3px solid var(--accent);
}

.room-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

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

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

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 1.5rem 1rem 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.room-image:hover .image-overlay {
    opacity: 1;
}

.view-gallery {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.room-content {
    padding: var(--spacing-md);
}

.room-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary);
}

.room-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: var(--spacing-md);
}

.room-price span {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 400;
}

.room-features {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.room-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--secondary);
}

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

.room-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: bold;
    margin-right: 0.5rem;
}

.info-banner {
    background: var(--primary);
    color: var(--white);
    padding: var(--spacing-md);
    border-radius: 15px;
    display: flex;
    justify-content: space-around;
    text-align: center;
    gap: var(--spacing-md);
}

.info-item {
    flex: 1;
}

/* ===================================
   Events Section
   =================================== */

.section-events {
    background: var(--light);
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.event-hall {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.event-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
}

.event-hall h3 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary);
}

.event-hall ul {
    list-style: none;
    text-align: left;
}

.event-hall ul li {
    padding: 0.7rem 0;
    color: var(--secondary);
    border-bottom: 1px solid var(--border);
}

.event-hall ul li::before {
    content: '✓';
    color: var(--accent);
    margin-right: 0.5rem;
    font-weight: bold;
}

.event-highlight {
    background: var(--accent);
    color: var(--white);
    padding: var(--spacing-md);
    border-radius: 15px;
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.event-highlight p {
    font-size: 1.2rem;
    margin: 0;
}

.event-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--spacing-sm);
}

.event-type {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 15px;
    text-align: center;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.event-type:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
}

/* ===================================
   Leisure Section
   =================================== */

.section-leisure {
    background: var(--white);
}

.leisure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: var(--spacing-lg);
}

/* Link wrapper for clickable cards */
.leisure-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    height: 100%;
    transition: all 0.3s ease;
}

.leisure-card {
    background: var(--white);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.leisure-card-link:hover .leisure-card {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Leisure Image (exactly like room cards - bündig oben) */
.leisure-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

.leisure-card-link:hover .leisure-image img {
    transform: scale(1.1);
}

/* Pinterest-style overlay */
.leisure-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.leisure-card-link:hover .leisure-overlay {
    opacity: 1;
}

/* "Besuchen" button */
.visit-button {
    background: white;
    color: var(--primary);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.leisure-card-link:hover .visit-button {
    transform: translateY(0);
}

.leisure-card h3 {
    font-size: 1.3rem;
    margin: 1.5rem 1.5rem 0.5rem 1.5rem;
    color: var(--primary);
    min-height: 2.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leisure-card p {
    color: var(--gray);
    margin: 0 1.5rem 1rem 1.5rem;
    flex-grow: 1;
    min-height: 3rem;
}

/* Distance Badge (non-clickable info badge) */
.distance-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    pointer-events: none;
    margin-bottom: 1.5rem;
    align-self: center;
}

.activities {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.activity {
    text-align: center;
    padding: var(--spacing-md);
}

.activity-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.activity h4 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
    color: var(--primary);
}

.activity p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ===================================
   Booking Section
   =================================== */

.section-booking {
    background: var(--light);
}

/* Room Cards Grid */
.rooms-selection {
    margin-bottom: 3rem;
}

.booking-subtitle {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.booking-rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.booking-room-card {
    background: var(--light);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    cursor: pointer;
}

.booking-room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-room-card.selected {
    border-color: var(--accent);
    background: white;
}

/* Room Image Container */
.booking-room-image-container {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    background: var(--light);
}

.booking-room-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    cursor: pointer;
}

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

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

.booking-room-card h4 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.booking-room-price {
    font-size: 2rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.booking-room-price span {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 400;
}

/* Counter */
.booking-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.booking-counter-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    background: white;
    color: var(--accent);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-counter-btn:hover:not(:disabled) {
    background: var(--accent);
    color: white;
    transform: scale(1.1);
}

.booking-counter-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.booking-counter-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    min-width: 40px;
    text-align: center;
}

/* Summary */
.booking-summary {
    background: var(--accent);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.booking-summary h3 {
    margin-bottom: 1rem;
}

.booking-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.booking-summary-item:last-child {
    border-bottom: none;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

/* Calendar Date Picker */
.date-picker-container {
    margin-bottom: 2rem;
}

.date-input-box {
    padding: 1.5rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    margin-bottom: 1rem;
}

.date-input-box:hover {
    border-color: var(--accent);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.date-input-box.active {
    border-color: var(--accent);
    background: var(--light);
}

.date-input-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.date-label {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
}

.date-range-display {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
}

.date-item {
    text-align: center;
}

.date-item-label {
    font-size: 0.75rem;
    color: var(--gray);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.date-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
}

.date-value.placeholder {
    color: var(--gray);
    font-weight: 400;
    font-size: 1rem;
}

.date-separator {
    font-size: 1.5rem;
    color: var(--gray);
}

.nights-info {
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
}

/* Calendar */
.calendar-wrapper {
    display: none;
    background: white;
    border: 2px solid var(--border);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.calendar-wrapper.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.calendar-header h4 {
    font-size: 1.2rem;
    color: var(--primary);
}

.calendar-nav {
    display: flex;
    gap: 0.5rem;
}

.calendar-nav button {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: white;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.calendar-nav button:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

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

.weekday {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray);
    padding: 0.5rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    border: 2px solid transparent;
}

.calendar-day:not(.disabled):hover {
    background: var(--light);
    border-color: var(--accent);
}

.calendar-day.disabled {
    color: var(--border);
    cursor: not-allowed;
}

.calendar-day.selected {
    background: var(--accent);
    color: white;
    font-weight: 700;
}

.calendar-day.in-range {
    background: rgba(192, 147, 109, 0.2);
}

.calendar-day.start,
.calendar-day.end {
    background: var(--accent);
    color: white;
    font-weight: 700;
}

.calendar-day.other-month {
    color: var(--border);
}

.booking-form,
.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-main);
    transition: var(--transition);
    background: var(--white);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-group select {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23c0936d" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
    padding-right: 3rem;
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(192, 147, 109, 0.1);
}

.form-group select:hover {
    border-color: var(--accent);
}

/* Custom Select Styling for better UX */
.form-group select option {
    padding: 1rem;
    background: var(--white);
    color: var(--dark);
}

.form-group select option:hover,
.form-group select option:checked {
    background: var(--accent);
    color: var(--white);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
}

.form-checkbox label {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Company Information Styles */
#companyInfoSection {
    margin-bottom: var(--spacing-md);
}

#companyFieldsWrapper {
    position: relative;
    padding-right: 60px; /* Space for delete button */
}

.company-section {
    margin-top: 0;
    margin-bottom: var(--spacing-md);
}

.add-company-btn {
    background: transparent;
    border: 2px dashed var(--accent);
    color: var(--accent);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-main);
    width: 100%;
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.add-company-btn:hover {
    background: var(--accent);
    color: var(--white);
    border-style: solid;
}

.delete-company-all-btn {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background: transparent;
    border: 2px solid var(--gray);
    color: var(--gray);
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    min-height: 100%;
}

.delete-company-all-btn:hover {
    background: #e74c3c;
    border-color: #e74c3c;
    color: var(--white);
}

.delete-company-all-btn svg {
    width: 20px;
    height: 20px;
}

.form-group-with-delete {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: var(--spacing-sm);
}

.form-group-with-delete .form-group {
    flex: 1;
    margin-bottom: 0;
}

.delete-btn {
    background: transparent;
    border: 2px solid var(--gray);
    color: var(--gray);
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    margin-top: 28px; /* Align with input field */
}

.delete-btn:hover {
    background: #e74c3c;
    border-color: #e74c3c;
    color: var(--white);
}

.delete-btn svg {
    width: 20px;
    height: 20px;
}

/* ===================================
   Contact Section
   =================================== */

.section-contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-lg);
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item {
    background: var(--light);
    padding: var(--spacing-md);
    border-radius: 15px;
    display: flex;
    gap: var(--spacing-sm);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--secondary);
    line-height: 1.6;
}

.contact-item a {
    color: var(--accent);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: var(--primary);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-badges {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-sm);
    align-items: center;
}

.footer-badges .badge {
    background: rgba(255, 255, 255, 0.1);
}

.footer-badges .badge-logo img {
    height: 40px;
    opacity: 0.9;
    background: white;
    padding: 5px;
    border-radius: 5px;
}

.footer-badges .badge-logo:hover img {
    opacity: 1;
    transform: translateY(-2px);
}

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

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

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

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

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

/* ===================================
   Animations
   =================================== */

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        top: 10px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 968px) {
    .hero-title {
        font-size: 3rem;
    }

    .about-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

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

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

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        height: 50vh;
        min-height: 400px;
    }

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

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

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

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

    .leisure-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .leisure-image {
        height: 180px;
    }

    .leisure-card h3 {
        font-size: 1.2rem;
    }

    .leisure-card p {
        font-size: 0.95rem;
    }

    .distance-badge {
        font-size: 0.8rem;
        padding: 0.3rem 0.9rem;
    }

    .visit-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .info-banner {
        flex-direction: column;
    }

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

    /* Booking Section - Mobile */
    .booking-rooms-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .booking-room-card {
        padding: 1.5rem 1rem;
    }

    .booking-room-image-container {
        height: 150px;
        margin-bottom: 1rem;
    }

    .booking-room-card h4 {
        font-size: 1.3rem;
    }

    .booking-room-price {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .booking-counter-btn {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }

    .booking-counter-value {
        font-size: 1.3rem;
    }

    /* Summary Box */
    .booking-summary {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .booking-summary h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .booking-summary-item {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }

    .booking-summary-item:last-child {
        font-size: 1rem;
        margin-top: 0.5rem;
    }

    /* Date Picker - Vertical Layout */
    .date-input-box {
        padding: 1.2rem;
    }

    .date-input-header {
        margin-bottom: 0.8rem;
    }

    .date-label {
        font-size: 0.95rem;
    }

    .date-range-display {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        text-align: left;
    }

    .date-separator {
        display: none;
    }

    .date-item {
        text-align: left;
        padding: 0.5rem;
        background: var(--light);
        border-radius: 8px;
    }

    .date-item-label {
        font-size: 0.7rem;
        margin-bottom: 0.2rem;
    }

    .date-value {
        font-size: 1rem;
    }

    .nights-info {
        margin-top: 0.8rem;
        padding-top: 0.8rem;
        font-size: 0.85rem;
    }

    /* Calendar */
    .calendar-wrapper {
        padding: 1rem;
    }

    .calendar-header h4 {
        font-size: 1rem;
    }

    .calendar-nav button {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .weekday {
        font-size: 0.75rem;
        padding: 0.3rem;
    }

    .calendar-day {
        font-size: 0.85rem;
    }

    /* Form */
    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }

    .btn-primary {
        padding: 1rem;
        font-size: 1rem;
    }
}

/* ===================================
   Room Gallery Modal (Lightbox)
   =================================== */

.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.gallery-container {
    position: relative;
    max-width: 1200px;
    width: 90%;
    max-height: 90vh;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-image-wrapper {
    position: relative;
    max-width: 100%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-image-wrapper img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
    transition: opacity 0.15s ease;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.gallery-caption {
    margin-top: 1rem;
    color: white;
    font-size: 1.1rem;
    text-align: center;
    font-weight: 600;
}

.gallery-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.gallery-close:hover {
    transform: rotate(90deg);
    color: var(--accent);
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 3rem;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 0;
    padding: 0;
}

.gallery-prev {
    left: -80px;
}

.gallery-next {
    right: -80px;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev:disabled,
.gallery-next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.gallery-prev:disabled:hover,
.gallery-next:disabled:hover {
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
}

.gallery-dots {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
}

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

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

.gallery-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.gallery-counter {
    position: absolute;
    top: -50px;
    left: 0;
    color: white;
    font-size: 1rem;
    font-weight: 600;
}

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

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Gallery Modal - Mobile Responsive */
@media (max-width: 768px) {
    .gallery-container {
        width: 95%;
    }

    .gallery-image-wrapper img {
        max-height: 60vh;
    }

    /* Hide arrow buttons on all mobile devices (smartphones) - use swipe/tap */
    .gallery-prev,
    .gallery-next {
        display: none;
    }

    .gallery-close {
        top: -40px;
        font-size: 2.5rem;
        width: 40px;
        height: 40px;
    }

    .gallery-dots {
        bottom: -40px;
        gap: 0.5rem;
    }

    .gallery-dot {
        width: 10px;
        height: 10px;
    }

    .gallery-counter {
        font-size: 0.9rem;
        top: -40px;
    }

    .gallery-caption {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .gallery-image-wrapper img {
        max-height: 50vh;
    }
}
