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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
    color: #333;
    background-color: #fafafa;
}

h1, h2, h3 {
    font-weight: 600;
}

h2 {
    font-size: 22px;
    margin-top: 60px;
    margin-bottom: 10px;
}

h3 {
    font-size: 18px;
}

h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 500;
}

h5 {
    font-size: 16px;
}

.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0)), url('images/hero.jpg');
    background-size: cover;
    background-position: center bottom;
    height: 68vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero h1 {
    font-family: 'Rosarivo', serif;
    font-size: 64px;
    font-weight: 400;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    max-width: 540px;
    margin: 0 auto;
}

.hero a {
    color: white;
    display: inline-block;
    margin-top: 40px;
}

.container {
    max-width: 1200px;
    margin: 0 auto 120px;
    padding: 40px 0;
}

section {
    padding: 0 20px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
    margin-top: -80px; /* Nostetaan kortteja hieman hero-kuvan päälle halutessa (valinnainen) */
}

.feature-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.feature-card h3 {
    font-size: 16px;
    color: #111;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: #666;
}

.description {
}

.description p {
    margin-bottom: 15px;
    padding: 0 25px;
}

.booking-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    border-radius: 8px;
}

.booking-info {
    flex: 1;
    min-width: 250px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 6px;
}

.booking-calendar {
    flex: 4;
    min-width: 300px;
    width: 100%;
}

.gallery-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.map-placeholder {
    width: 100%;
    margin-top: 20px;
}

.contact-section p {
    margin-bottom: 10px;
}

.contact-section.center {
    text-align: center;
}

.content-wrapper {
    position: relative;
    overflow: hidden;
}

.content-wrapper.collapsed {
    max-height: 175px;
}

.content-wrapper.collapsed::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
}

.read-more-button {
    background: none;
    border: none;
    color: #333;
    font-weight: bold;
    font-size: 16px;
    padding: 10px 0;
    cursor: pointer;
    text-decoration: underline;
    margin-top: 10px;
}

.read-more-button:hover {
    color: #003d82;
}

.equipment-list {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    gap: 20px;
}

.equipment-list-column {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
    text-transform: uppercase;
    font-size: 14px;
}

.faq-question {
    margin: 20px 0;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 48px;
    }

    .features {
        margin-top: 20px;
    }

    .booking-layout {
        flex-direction: column;
    }

    .gallery-section {
        padding: 0;
    }

    .gallery-section h3, .gallery-section p {
        padding: 0 20px;
    }
}