@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

body {
    background-color: rgb(253, 241, 225);
}

header {
    text-align: center;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.174), rgba(0, 0, 0, 0.174)), 
        url("vernazza-banner.jpg") no-repeat center center;
    background-size: cover;
    height: 500px;
    display: flex;
    flex-direction: column;
    border-bottom: 3px solid rgb(252, 222, 181);
    position: relative;
}

header nav {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 20px;
    border-radius: 8px;
    margin-top: 20px;
}

header ul {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

header a {
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
}

header li:hover {
    background-color: rgba(255, 255, 255, 0.153);
    border-radius: 5px;
    scale: 1.1;
    transition: 0.3s;
}


header div {
    margin-top: 120px;
}

header h1 {
    font-size: 90px;
    color: white;
}

header h2 {
    font-size: 35px;
    color: white;
}

header p {
    font-size: 30px;
    color: white;
    margin-bottom: -20px;
    letter-spacing: 8px;
}

#activities {
    text-align: center;
    height: 500px;
    border-bottom: 3px solid rgb(252, 222, 181);
}

#activities h3 {
    font-size: 25px;
    margin-top: 55px;
}

.carousel {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.c-item {
    margin-top: 50px;
}

.c-item img {
    width: 200px;
    height: 300px;
    border-radius: 7px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.128);
    object-fit: cover;
    position: relative;
}

.c-name {
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    position: absolute;
    top: 850px;
    color: white;
    padding: 5px;
}

.c-desc {
    font-weight: 600;
    font-size: 13px;
    text-align: left;
    position: absolute;
    top: 880px;
    color: white;
    padding: 5px;
    width: 200px;
}

#infos {
    height: 500px;
    border-bottom: 3px solid rgb(252, 222, 181);
}

#infos h3 {
    font-size: 25px;
    margin-top: 55px;
    text-align: center;
}

.info-box {
    display: flex;
    margin-top: 60px;
    gap: 100px;
}

.info-box img {
    width: 900px;
    height: 340px;
    margin-left: 20px;
    border-radius: 5px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.128);
}


.info-desc h4 {
    font-size: 25px;
    margin-bottom: 15px;
}

.info-desc p {
    font-size: 20px;
    margin-bottom: 10px;
}

#hotels {
    height: 400px;
}

#hotels h3 {
    font-size: 25px;
    margin-top: 55px;
    text-align: center;
}

.htls {
    display: flex;
    justify-content: space-around;
    margin-top: 90px;
}

.ava img {
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.128);
    border-radius: 5px;
}

.ava p {
    font-weight: bold;
    font-size: 20px;
    margin-top: 5px;
}