/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Navigation Bar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 15px 20px;
    z-index: 1000;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
}

nav ul li a:hover {
    color: #4CAF50;
}

/* Hero Section */
#hero {
    background-image: url('kepek/hero-image.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4em;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.5em;
    margin-top: 10px;
}

.cta-button {
    background-color: #4CAF50;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #45a049;
}

/* About Section */
#about {
    padding: 80px 20px;
    text-align: center;
    background-color: white;
}

#about h2 {
    font-size: 2.5em;
}

#about p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 20px auto;
}

/* Gallery Section */
#gallery {
    padding: 80px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

#gallery h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Ensures exactly 4 images per row */
    gap: 10px;
    max-width: 1800px; /* Prevents it from stretching too much */
    margin: 0 auto;
    padding: 10px;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.gallery img:hover {
    transform: scale(1.05);
}


/* Google Map Section */
#map {
    padding: 80px 20px;
    text-align: center;
    background-color: white;
}

#map iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

#map h2 {
    font-size: 2.5em; 
    margin-bottom: 20px;
}

/* Contact Section */
#contact {
    padding: 80px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

#contact p {
    font-size: 1.2em;
}

#contact h2 {
    font-size: 2.5em; 
    margin-bottom: 20px;
}

/* Footer Section */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

footer p {
    margin: 0;
}

/* Lightbox Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}