
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    color: #333;
    background: #f9fafb;
}

header {
    background: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

nav {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

nav .logo {
    font-size: 1.4rem;
    font-weight: bold;
}

nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #2563eb;
}

.hero {
    height: calc(100vh - 70px);
    background-image: url('img/Image23.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 70px;
}

.hero .overlay {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
}

.info {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    background: #f9fafb;
}

.info-box {
    max-width: 1000px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.info-box h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.info-box p {
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    nav ul {
        gap: 10px;
    }

    .info-box {
        padding: 20px;
    }

    .info-box h2 {
        font-size: 1.5rem;
    }
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    background: #f9fafb;
}

.gallery img {
    width: 400px;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}
.logo a {
    text-decoration: none;
    color: inherit;
    font-weight: bold;
    font-size: 1.4rem;
}
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
}


.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #bbb;
}

.gallery img {
    width: 200px;
    margin: 10px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}
