* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    background: #f3f5f8;
    padding: 40px;
}

/* WRAPPER */
.wrapper {
    max-width: 1200px;
    margin: auto;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,.25);
}

/* NAV */
.nav {
    background: linear-gradient(90deg,#0c1f44,#0f3b78);
    color: #fff;
    display: flex;
    align-items: center;
    padding: 18px 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 700;
}

.logo img {
    height: 36px;
}

.menu {
    margin-left: auto;
}

.menu a {
    color: #fff;
    text-decoration: none;
    margin-left: 28px;
    font-weight: 500;
    position: relative;
}

.menu a:hover {
    opacity: .85;
}

.menu a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: #fff;
}

/* HERO */
.hero {
    position: relative;
    height: 300px;
    background: url("../images/hero-mountains-antenna.png") center 30%/cover no-repeat;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(0,40,90,.7),rgba(0,40,90,.1));
    z-index: 1;
}

.hero h1 {
    position: absolute;
    bottom: 70px;
    left: 60px;
    color: #fff;
    font-size: 48px;
    z-index: 2;
}


/* CONTENT */
.content {
    padding: 60px;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 60px;
}

.text p {
    font-size: 18px;
    line-height: 1.7;
    color: #2c3e55;
    margin-bottom: 22px;
}

.text ul {
    margin-top: 20px;
    padding-left: 20px;
}

.text li {
    margin-bottom: 12px;
    font-size: 17px;
    color: #1f4f85;
}

/* CARD */
.card {
    background: #fff;
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

.card img {
    width: 100%;
    border-radius: 14px;
}

.caption {
    text-align: center;
    margin-top: 10px;
    font-size: 15px;
    color: #555;
}

/* FOOTER */
.footer {
    background: linear-gradient(90deg,#0c1f44,#0f3b78);
    color: #fff;
    text-align: center;
    padding: 22px;
    font-size: 14px;
    border-radius: 0 0 18px 18px;
}

/* RESPONSIVE */
@media(max-width:900px) {
    body {
        padding: 15px;
    }

    .nav {
        flex-wrap: wrap;
        gap: 10px;
    }

    .menu {
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
    }

    .menu a {
        margin-left: 18px;
    }

    .hero h1 {
        font-size: 34px;
        left: 30px;
    }

    .content {
        grid-template-columns: 1fr;
        padding: 35px;
    }
}

/* EVENTS CALENDAR */
.calendar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.month {
    background: #f6f8fb;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 6px 15px rgba(0,0,0,.08);
}

.month h3 {
    margin-bottom: 12px;
    color: #0f3b78;
    border-bottom: 1px solid #dfe6f0;
    padding-bottom: 6px;
}

.event {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
    box-shadow: inset 0 0 0 1px #e5ebf3;
}

.date {
    min-width: 42px;
    text-align: center;
    padding: 6px 8px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
}

/* STATUS COLOURS */
.confirmed {
    background: #2ecc71;
    color: #fff;
}

.tbc {
    background: #f39c12;
    color: #fff;
}

.cancelled {
    background: #e74c3c;
    color: #fff;
}

.tbc-text {
    font-size: 12px;
    color: #f39c12;
}

.cancelled-text {
    font-size: 12px;
    color: #e74c3c;
}
/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.gallery-grid figure {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

.gallery-grid img {
    width: 100%;
    display: block;
}

.gallery-grid figcaption {
    padding: 10px 12px;
    font-size: 14px;
    color: #444;
    background: #f7f9fc;
    border-top: 1px solid #e3e8f0;
    text-align: center;
}

