html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Google Sans', sans-serif;
}


.menu-area {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    background-color: rgb(32, 32, 32);
    width: 100%;
    height: 70px;
    z-index: 1;
    
    transition: top 0.3s ease-in-out;   /* Navbar transition */
}

.menu-area.scrolled {
    background: #000;
    padding: 5px 20px;
}

.navbar {
    display: flex;
    justify-content: right;
    list-style: none;
    margin-right: 7%;
}

.logo {
    color: #fff;
    flex: 1 1 auto;
    margin-left: 5%;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    font-size: 25px;
}

.nav-text {
    background-color: #333;
    color: #fff;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.nav-test:hover {
    color: #333;
    background-color: white;
}


.nav-text { 
    margin: 15px;
    color:#fff;
    text-decoration: none;
    text-transform: uppercase;
}

.showcase {
    text-align: center;
    padding: 100px 10%;
}

.showcase h1 {
    font-size: 36px;
    color: #333;
    text-transform: uppercase;
}

.showcase p {
    font-size: 18px;
    color: #939393;
    margin-bottom: 40px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 20px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.image-box {
    position: relative;
    width: 300px;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-box:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.537);
    color: #fff;
    width: 100%;
    height: 70px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-box:hover .overlay {
    opacity: 1;
}

/* Footer */
.footer {
    background: #3c3c3c;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.footer-icons {
    position: relative;
    z-index: 10;
}

.footer a {
    color: #a8a8a8;
    text-decoration: none;
    text-transform: none;
    font-size: 12px;
}
