/* Existing styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
}

#hero {
    background-image: url('your-hero-image.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    color: white;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
}

.hero-content h1 {
    font-size: 4em;
    margin: 0;
}

.hero-content p {
    font-size: 1.5em;
    margin: 20px 0;
}

.btn {
    background-color: #ff6b6b;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #ff3b3b;
}

#about {
    padding: 50px;
    background-color: #ffffff;
    text-align: center;
}

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

#about p {
    font-size: 1.2em;
    color: #333;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

footer a {
    color: #ff6b6b;
    text-decoration: none;
}
/* General styling for the gallery */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f9;
}

.container {
    position: relative;
    max-width: 1000px;
    margin: auto;
}

#expandedImg {
    display: none; /* Start hidden */
    width: 100%;
    max-width: 700px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

#imgtext {
    text-align: center;
    font-size: 18px;
    margin-top: 10px;
    color: #333;
}

/* Thumbnail images */
.thumbnail {
    width: 100px;
    height: auto;
    padding: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.thumbnail:hover {
    opacity: 0.7;
}

/* Row for the thumbnails */
.row {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

#back-to-main {
    display: block;
    margin: 30px auto;
    text-align: center;
}

#back-to-main a {
    color: #ff6b6b;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 20px;
    border: 2px solid #ff6b6b;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#back-to-main a:hover {
    background-color: #ff6b6b;
    color: white;
}