@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600&family=Montserrat:wght@300;400;500&display=swap');

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0e0e0e;
    color: #f5f5f5;
}

h1, h2, h3 {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: inherit;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #000;
}

.logo {
    font-size: 22px;
    font-weight: 600;
}

.nav-links a {
    margin-left: 40px;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #c9a34f;
}

nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.header-image {
    width: 100%;
    height: 400px;
    background: url('images/header.jpeg') center/cover no-repeat;
}

.container {
    width: 80%;
    margin: 80px auto;
    text-align: center;
}


.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    justify-items: center;
}

.gallery-item {
    width: 100%;
    max-width: 500px;
}

.gallery-item img {
    width: 100%;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.03);
}

.description {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.8;
}


.modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 80px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    border-radius: 20px;
}

.close {
    position: absolute;
    top: 40px;
    right: 60px;
    font-size: 40px;
    cursor: pointer;
}


footer {
    background-color: #000;
    padding: 40px;
    text-align: center;
    font-size: 14px;
    margin-top: 80px;
}


