/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #222;
}

.container {
    width: 1200px;
    margin: 0 auto;
}

/* NAVIGATION */

header {
    padding: 20px 0;
    background: #fff;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-weight: 800;
}

.main-nav {
    list-style: none;
    display: flex;
    gap: 40px;
}

.main-nav a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
}

.main-nav a:hover {
    color: #a855f7;
}

.btn-outline {
    padding: 10px 20px;
    border: 2px solid #222;
    text-decoration: none;
    color: #222;
}

.btn-outline:hover {
    background: #222;
    color: #fff;
}

/* HERO */

.hero {
    height: 600px;
    background-image: url("../images/hero.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
}

.hero h2 {
    font-size: 48px;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.btn-primary {
    padding: 12px 30px;
    background: white;
    color: black;
    text-decoration: none;
    font-weight: 600;
}

/* ACTIVITIES */

.activities {
    background: #8b5cf6;
    padding: 80px 0;
}

.flex-row {
    display: flex;
    justify-content: space-between;
}

.activity-card {
    width: 30%;
    height: 250px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    font-weight: 600;
    background-size: cover;
    background-position: center;
}

.skating {
    background-image: url("../images/skating.jpg");
}

.vr {
    background-image: url("../images/vr.jpg");
}

.escape {
    background-image: url("../images/escape.jpg");
}

/* BIRTHDAY */

.birthday-container {
    display: flex;
}

.birthday-image,
.birthday-text {
    width: 50%;
}

.birthday-image img {
    width: 100%;
    display: block;
}

.birthday-text {
    padding: 60px;
    background: #f3e8ff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.birthday-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

/* FOOD */

.food-container {
    display: flex;
}

.food-text,
.food-image {
    width: 50%;
}

.food-text {
    padding: 60px;
    background: #2dd4bf;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.food-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.food-image img {
    width: 100%;
    display: block;
}

/* GALLERY */

.gallery {
    padding: 40px 0;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery-grid img {
    width: calc(33.333% - 10px);
    height: 200px;
    object-fit: cover;
}

/* ABOUT */

.about {
    padding: 60px 0;
}

.about h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 40px;
}

.about-container {
    display: flex;
    flex-direction: column;
}

.about-info {
    display: flex;
    justify-content: space-between;
}

.about-info div {
    width: 30%;
}

.about-info ul {
    list-style: none;
}

.about-info a {
    text-decoration: none;
    color: #222;
}

.about-info a:hover {
    color: #a855f7;
}

/* FOOTER */

footer {
    text-align: center;
    padding: 20px;
    background: #f1f1f1;
}