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

html {
    font-size: 100%;
}

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

/* HEADER */
.site-header {
    background: #1F3A5F;
    color: white;
    padding: 1rem;
    position: relative;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

/* NAVIGATION */
#menu-toggle {
    display: none;
}

.hamburger {
    font-size: 1.8rem;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 1rem;
}

.nav-items {
    list-style: none;
    display: none;
    margin-top: 1rem;
}

.nav-items li {
    margin-bottom: 0.8rem;
}

.nav-items a {
    color: white;
    text-decoration: none;
}

/* Show menu */
#menu-toggle:checked~.main-nav .nav-items {
    display: block;
}

/* HERO */
.hero picture img {
    width: 100%;
    height: auto;
    display: block;
}

.hero {
    position: relative;
    text-align: center;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    padding: 1rem;
    max-width: 90%;
}

.hero-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.hero-text p {
    font-size: 1rem;
    line-height: 1.4;
}

/* intro */
.intro {
    font-size: 1rem;
    text-align: center;
}

/* footer */
footer {
    text-align: center;
    padding: 1.5rem;
    background: #1F3A5F;
    color: white;
    margin-top: 2rem;
}

/* Tablet */
@media (min-width: 768px) {
    .hero-text h2 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.2rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .hero-text h2 {
        font-size: 3rem;
    }

    .hero-text p {
        font-size: 1.3rem;
    }
}

/* === ATTRACTION PAGE === */

.page-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    margin: 2rem 0;
}

.attraction-card {
    margin: 2rem 1rem;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.attraction-card picture img {
    width: 100%;
    display: block;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.8rem;
}

@media (min-width: 768px) {
    .attraction-card {
        display: flex;
        align-items: center;
    }

    .attraction-card picture,
    .card-content {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .attractions-page {
        max-width: 1100px;
        margin: auto;
    }
}

/* === PLANYOURVISIT PAGE === */

.plan-block {
    background: white;
    padding: 1.5rem;
    margin: 1.5rem 1rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.plan-block h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.video {
    margin: 2rem 1rem;
    background-color: white;
    padding: 1.5rem;
    margin: 1.5rem 1rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.video h3 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin-bottom: 1rem;
}

.video iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
    display: block;
    margin: auto;
    border-radius: 8px;
}

/* Tablet */
@media (min-width: 768px) {
    .plan-block {
        padding: 2rem;
        margin: 2rem auto;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .plan-page {
        max-width: 1100px;
        margin: auto;
    }

    .video iframe {
        height: 500px;
    }

}