* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #121212;
    color: #f0f0f0;
    line-height: 1.6;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #d4af37;
}

/* Hero Section */
header {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?ixlib=rb-1.2.1&auto=format&fit=crop&w=1353&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #d4af37;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 20px;
    transition: transform 0.2s, background 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background-color: #fff;
    transform: scale(1.05);
}

.btn:disabled {
    background-color: #555;
    cursor: not-allowed;
    transform: none;
}

/* Sektioner */
section {
    padding: 80px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    border-bottom: 2px solid #d4af37;
    display: inline-block;
    padding-bottom: 10px;
}

/* Priser */
.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.price-card {
    background: #1e1e1e;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #333;
    transition: transform 0.3s;
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
}

.price-card.highlight {
    border: 2px solid #d4af37;
    background: #252525;
}

.price {
    font-size: 2rem;
    color: #fff;
    margin: 10px 0;
    font-weight: bold;
}

.extra-info {
    margin-top: 30px;
    color: #aaa;
    font-style: italic;
}

#booking {
    background: linear-gradient(to bottom, #121212, #1a1a1a);
}

#booking p {
    color: #ccc;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Datumväljare Styles */
.date-selector-container {
    margin-bottom: 30px;
    text-align: center;
}

.date-selector-container label {
    font-size: 1.2rem;
    margin-right: 15px;
    color: #d4af37;
    font-weight: bold;
}

#bookingDate {
    padding: 10px 15px;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #d4af37;
    background-color: #252525;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    outline: none;
    cursor: pointer;
}

#bookingDate::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.time-slot {
    background: #252525;
    color: #d4af37;
    padding: 18px;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    border: 1px solid #333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.time-slot:not(.booked):not(.past):hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 8px 15px rgba(212, 175, 55, 0.2);
    background: #2a2a2a;
}

.time-slot.selected {
    background: #d4af37;
    color: #000;
    border-color: #d4af37;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.time-slot.booked {
    background: #3d0000;
    color: #ff6b6b;
    border-color: #500000;
    cursor: not-allowed;
    text-decoration: line-through;
    opacity: 0.8;
}

.time-slot.past {
    background: #181818;
    color: #444;
    border-color: #222;
    cursor: not-allowed;
    opacity: 0.5;
}

.time-slot:not(.booked):not(.past):hover::after {
    content: 'Boka';
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    color: #fff;
}

/* Modal / Pop-up */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #1e1e1e;
    padding: 40px;
    border: 1px solid #d4af37;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    position: relative;
    text-align: center;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #fff;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

input {
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #444;
    background: #2a2a2a;
    color: #fff;
}

/* Karta */
.map-container {
    margin-top: 20px;
    border: 2px solid #333;
    border-radius: 10px;
    overflow: hidden;
    background: #222;
}

/* Footer */
footer {
    background: #0d0d0d;
    padding-top: 60px;
    border-top: 1px solid #333;
    color: #ccc;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
    text-align: left;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.footer-section p {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section i {
    color: #d4af37;
    width: 20px;
    text-align: center;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #d4af37;
}

.footer-bottom {
    background: #000;
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

/* Mobil Meny */
.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
}

.success-icon {
    font-size: 4rem;
    color: #d4af37;
    margin-bottom: 20px;
    animation: popIn 0.5s ease;
}

@media (max-width: 768px) {
    nav { padding: 15px 20px; }
    .menu-toggle { display: block; z-index: 200; }

    .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); background-color: #d4af37; }
    .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background-color: #d4af37; }

    .nav-menu {
        position: fixed; left: -100%; top: 70px;
        flex-direction: column; background-color: #1a1a1a;
        width: 100%; text-align: center; transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0,0,0,0.5); padding: 20px 0; gap: 0;
    }
    .nav-menu.active { left: 0; }
    .nav-menu li { margin: 15px 0; }
    .nav-menu a { font-size: 1.2rem; display: block; width: 100%; }

    .hero-content h1 { font-size: 2.5rem; }
    .booking-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .time-slot { padding: 10px; font-size: 1rem; }
    .price-grid { grid-template-columns: 1fr; }
    .footer-content { text-align: center; }
    .footer-section ul li { justify-content: center; }
}

@media (max-width: 480px) {
    .booking-grid { grid-template-columns: repeat(2, 1fr); }
}

@keyframes popIn {
    0% { transform: scale(0); }
    80% { transform: scale(1.2); }
    100% { transform: scale(1); }
}