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

html {
scroll-behavior: smooth;
}

body {
font-family: Arial, Helvetica, sans-serif;
background: #f7f7f5;
color: #111;
}

/* NAVBAR */

.navbar {
width: 100%;
padding: 24px 7%;
display: flex;
justify-content: space-between;
align-items: center;
background: #f7f7f5;
}

.logo {
font-size: 24px;
font-weight: 800;
letter-spacing: -1px;
}

.navbar nav {
display: flex;
gap: 30px;
}

.navbar a {
color: #111;
text-decoration: none;
font-size: 14px;
}

/* HERO */

.hero {
min-height: 75vh;
padding: 100px 7%;
display: flex;
flex-direction: column;
justify-content: center;
}

.eyebrow {
font-size: 12px;
font-weight: 700;
letter-spacing: 2px;
color: #777;
margin-bottom: 18px;
}

.hero h1 {
font-size: clamp(60px, 9vw, 130px);
line-height: 0.9;
letter-spacing: -6px;
max-width: 900px;
}

.hero-text {
max-width: 480px;
margin-top: 30px;
font-size: 18px;
line-height: 1.6;
color: #666;
}

.hero-button {
display: inline-block;
width: fit-content;
margin-top: 35px;
padding: 15px 24px;
border-radius: 50px;
background: #111;
color: white;
text-decoration: none;
font-size: 14px;
}

/* EVENTS */

.events-section {
padding: 100px 7%;
}

.section-heading h2 {
font-size: 50px;
letter-spacing: -2px;
margin-bottom: 50px;
}

.events-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
}

.event-card {
background: white;
border-radius: 20px;
overflow: hidden;
transition: transform 0.3s ease;
}

.event-card:hover {
transform: translateY(-6px);
}

.event-image {
width: 100%;
height: 260px;
object-fit: cover;
background: #ddd;
}

.event-content {
padding: 22px;
}

.event-content h3 {
font-size: 22px;
margin-bottom: 8px;
}

.event-date {
color: #777;
font-size: 14px;
}

.event-description {
color: #777;
margin-top: 12px;
line-height: 1.5;
}

.view-button {
display: inline-block;
margin-top: 20px;
padding: 11px 18px;
border-radius: 30px;
background: #111;
color: white;
text-decoration: none;
font-size: 13px;
}

/* LOADING */

.loading {
color: #777;
}

/* FOOTER */

footer {
padding: 50px 7%;
color: #777;
font-size: 13px;
}

/* MOBILE */

@media (max-width: 600px) {

```
.navbar {
    padding: 20px;
}

.navbar nav {
    gap: 15px;
}

.hero {
    padding: 70px 20px;
}

.hero h1 {
    letter-spacing: -3px;
}

.events-section {
    padding: 70px 20px;
}

.section-heading h2 {
    font-size: 40px;
}
```

}

/* PHOTO GALLERY */

.gallery-section {
    padding: 100px 7%;
}

.gallery-header {
    position: relative;
    margin-bottom: 50px;
}

.gallery-header h2 {
    font-size: 60px;
    letter-spacing: -3px;
}

.back-button {
    margin-top: 25px;
    padding: 12px 20px;
    border: none;
    border-radius: 30px;
    background: #111;
    color: white;
    cursor: pointer;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.photo-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #ddd;
}

.photo-card img {
    width: 100%;
    height: 350px;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.photo-card:hover img {
    transform: scale(1.04);
}

.download-button {
    position: absolute;
    right: 15px;
    bottom: 15px;
    padding: 10px 16px;
    border-radius: 30px;
    background: white;
    color: #111;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

@media (max-width: 600px) {

    .gallery-section {
        padding: 70px 20px;
    }

    .gallery-header h2 {
        font-size: 42px;
    }

    .photo-grid {
        grid-template-columns: 1fr;
    }
}

/* PHOTO VIEWER */

.photo-viewer {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.92);
}

.photo-viewer img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 8px;
}

.viewer-close,
.viewer-prev,
.viewer-next {
    position: absolute;

    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: white;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    cursor: pointer;

    font-size: 30px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.viewer-close {
    top: 25px;
    right: 25px;
}

.viewer-prev {
    left: 25px;
}

.viewer-next {
    right: 25px;
}

.viewer-close:hover,
.viewer-prev:hover,
.viewer-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 600px) {

    .photo-viewer img {
        max-width: 94vw;
        max-height: 80vh;
    }

    .viewer-prev {
        left: 10px;
    }

    .viewer-next {
        right: 10px;
    }

    .viewer-close {
        top: 15px;
        right: 15px;
    }
}