html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', serif;
    background-color: rgba(217, 196, 196, 0.782);
    color: #2c2c2c;
    line-height: 1.6;
    padding-top: 100px;
    margin: 0;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(236, 230, 230, 0.782);
    padding: 5px 0;
    margin: 0 auto;
    border-bottom: 1px solid #e5e5e5;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    /*margin: 10px 0;
    padding: 5px;*/
    align-items: center;
    justify-content: center;
    gap: 10px;
}


nav ul {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    gap: 25px;
    list-style-type: none;
    justify-content: flex-end;
    padding: 10px;
    margin: auto;
    transition: all 0.3s ease;
}

nav a {
    color: black;
    text-decoration: none;
    margin: auto;
    padding: 5px 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav a:hover {
    background-color: white;
    color: #444;
    border-radius: 5px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 2px;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: #333;
    margin: 4px 0;
    border-radius: 2px;
}

/*Mobile styling*/
@media (max-width: 768px) {
    .navLinks ul {
        flex-direction: column;
        width: 50%;
        /*height: 250%;*/
        position: absolute;
        top: 130px;
        left: 10px;
        background-color: rgba(161, 122, 122, 0.892);
        display: none;
        padding: 20px;
        border-radius: 8px;
        z-index: 100;
    }
    .navLinks ul li {
        margin: 15px 0;
        text-align: left;
    }
    .navLinks.nav-active ul {
        display: flex;
    }
    .hamburger {
        display: flex;
        align-items: flex-start;
    }
}

.gallery {
    column-count: 3;
    column-gap: 15px;
    padding: 20px;
}

/*each gallery item */
.galleryItem {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    break-inside: avoid;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galleryItem img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}
.galleryItem .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.55); /* semi-transparent black */
    color: white;
    text-align: center;
    padding: 8px 5px;
    font-size: 0.85rem;
    opacity: 0; /* hide by default */
    transition: opacity 0.35s ease;
}

.galleryItem:hover .caption {
    opacity: 1; /* show caption on hover */
}

.galleryItem img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.galleryItem:hover img {
    transform: scale(1.05);
    opacity: 0.9;
}

@media (max-width: 900px) {
    .gallery {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .gallery {
        column-count: 1;
    }
}

.about-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 250px;
    justify-content: flex-start;
}

.about-text h1,
.about-text h2 {
    font-family: 'Georgia', serif;
    margin-bottom: 15px;
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.about-images img {
    width: 300px;
    height: 250px;
    border-radius: 8px;
    object-fit: cover;
}

/*Form Styling*/
.contact-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.contact-form label{
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  /*border-color: ;*/
  outline: none;
}

.contact-form button {
  padding: 12px 25px;
  background-color: rgb(173, 115, 115);
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #005fa3;
}

footer {
    bottom: 0;
    left: 0;
    text-align: center;
    color: black;
    padding: 20px 0;
    font-size: 0.9rem;
    font-weight: bold;
}

