/*
Theme Name: Vasa Museum Tickets
Author: 5/1
Description: Fast landing page for Vasa Museum tickets. No bloat, just speed.
Version: 1.0
*/

body {
    background-color: #001a33; /* Глубокий синий (море) */
    color: #f4f4f4;
    font-family: 'Georgia', serif;
    margin: 0;
    padding: 0;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('hero-bg.jpg') no-repeat center center;
    background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

h1 { font-size: 3.5rem; color: #d4af37; margin-bottom: 10px; } /* Золотой цвет декора корабля */
.cta-button {
    background-color: #d4af37;
    color: #000;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}
.cta-button:hover { background-color: #fff; }

/* Делаем календарь стильным */
#booking {
    background: #fff; /* Белый фон для формы выбора, чтобы было удобно читать */
    color: #333;
    border-radius: 15px;
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}