/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #4CAF50;
    color: white;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.language-flags {
    margin-left: auto;
    margin-right: 1rem;
}

.flag-icon {
    cursor: pointer;
    margin: 0 0.5rem;
    font-size: 1.5rem;
    border-radius: 50%;
    background-size: contain;
    background-repeat: no-repeat;
    width: 24px;
    height: 18px;
    display: inline-block;
}

.flag-icon-dk {
    background-image: url('https://cdnjs.cloudflare.com/ajax/libs/flag-icon-css/3.5.0/flags/4x3/dk.svg');
}

.flag-icon-gb {
    background-image: url('https://cdnjs.cloudflare.com/ajax/libs/flag-icon-css/3.5.0/flags/4x3/gb.svg');
}

.hamburger {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.nav-links {
    display: flex;
    gap: 1rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 1rem;
    margin: 1rem;
    border-radius: 5px;
    background: url('../images/hasten.jpg') center/cover no-repeat;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    background: #FFEB3B;
    color: #333;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

/* Booking Form */
.booking-form {
    padding: 1rem;
    background: white;
    margin: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.booking-form h3 {
    margin-bottom: 1rem;
    color: #333;
}

.booking-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-form select,
.booking-form input {
    padding: 0.7rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

/* Flatpickr Custom Styles */
.unavailable-time {
    border: 2px solid #f44336;
    background-color: #ffebee;
    color: #f44336;
}

.flatpickr-day.unavailable-date {
    background-color: #ffebee;
    color: #f44336;
}

.flatpickr-day.unavailable-date:hover {
    background-color: #ffcdd2;
    cursor: not-allowed;
}

/* Submit Button */
.submit-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

/* Availability Section */
.availability {
    padding: 1rem;
    background: white;
    margin: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.availability h3 {
    margin-bottom: 1rem;
    color: #333;
}

.availability-content {
    padding: 1rem;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-top: 1rem;
}

.confirm-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background: #333;
    color: white;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    header {
        flex-wrap: wrap;
    }

    .language-flags {
        order: 3;
        width: 100%;
        text-align: center;
        margin: 0.5rem 0;
    }

    .hamburger {
        display: block;
        order: 2;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #4CAF50;
        text-align: center;
        padding: 1rem 0;
    }

    .nav-links.active {
        display: flex;
    }
}
