/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    font-weight: 300;
    line-height: 1.6;
    background-color: #ffffff;
}
@font-face, .top-section .center {
  font-family: "contralto-big, sans-serif";
  -webkit-font-smoothing: antialiased; 
}
header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    border-bottom: 5px solid #777;
}

.top-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.top-section .logo-link {
    display: flex;
    align-items: center;
}

.top-section .logo {
    max-height: 40px;
    transition: transform .2s; /* Animation */

}
.top-section img:hover {
    transform: scale(1.1); /* Zoom in */
}

.top-section button {
    background-color: #555;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.top-section button:hover {
    background-color: #777;
}

.top-section .center h1{
    flex: 1;
    text-align: center;
    font-family: "contralto-big, sans-serif";
    -webkit-font-smoothing: antialiased; 
    font-size: 4.67rem; 
    line-height: 5.33333rem; 
    letter-spacing: 0.016666666666666666rem;
    font-weight: lighter;
}

.top-section .right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

nav.nav-section {
    background-color: #fff;
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
}

nav.nav-section ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav.nav-section ul li {
    display: inline;
    margin-right: 15px;
}

nav.nav-section ul li a {
    text-decoration: none;
    color: #000;
    transition: color 0.3s ease;
}

nav.nav-section ul li a:hover {
    color: #A319D1;
}

nav.full-screen-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 1000;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}

.full-screen-nav .menu-close {
    background-color: #fff;
    color: #000;
    border: none;
    font-size: 24px;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
}

.full-screen-menu {
    list-style-type: none;
    padding: 0;
    width: 100%;
}

.full-screen-menu li {
    margin: 20px 0;
    font-weight: bold;
    padding-left: 20px;
    text-align: left;
}

.full-screen-menu li a {
    color: #000;
    text-decoration: none;
    font-size: 24px;
    width: 100%;
    display: block;
    transition: color 0.3s ease;
    position: relative;
}

.full-screen-menu li a::after {
    content: ">";
    position: absolute;
    right: -30px;
    opacity: 0;
    transition: right 0.3s ease, opacity 0.3s ease;
}

.full-screen-menu li a:hover::after {
    right: 10px;
    opacity: 1;
}

.full-screen-menu li a:hover {
    color: #000;
}

.top-section .search-button:hover {
    color: #A319D1;
}

main {
    padding: 20px;
}

.banner {
    text-align: center;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
    max-height: 60vh; /* Change to 60% of viewport height */
}

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

.banner-text {
    margin-top: 10px;
}

.thumbnails {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.thumbnail {
    width: 30%;
    margin-bottom: 20px;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.thumbnail:hover {
    transform: scale(1.05);
}

.thumbnail img {
    max-width: 100%;
    height: auto;
}

.thumbnail-info {
    padding: 10px;
}

.thumbnail-info h3 {
    margin-bottom: 10px;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    border-top: 5px solid #777;
}

footer p {
    font-size: 0.9em;
}

footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #E6B800;
}

/* Media Queries for Small Screens */
@media (max-width: 768px) {
    nav.nav-section {
        display: none;
    }

    .menu-toggle {
        display: inline-block;
    }

    nav.full-screen-nav {
        display: none;
    }

    .top-section .center h1 {
        text-align: center;
        width: 100%;
        margin: 0;
        flex: 1;
        font-size: 1.5rem;
        line-height: 1.33333rem;
        font-weight: lighter; 
    }

    .top-section .right {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}

@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }

    nav.nav-section {
        display: block;
    }
    .top-section .center {
        font-size: 1.5rem;
        line-height: 1.33333rem; 
    }
}
