
body{
    background: var(--light);
    margin: 0;
    padding: 0;
}

#navbar{
    box-shadow: none;
}
#hero-section{
    padding-top: calc(6.5rem );
    /* position: absolute; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* justify-content: flex-start; */
    /* align-items: center; */
    top: 0;
    left: 0;
    right: 0;
    min-height: calc(100vh);
    background: url('../images/destintation-bg.jpeg') no-repeat center, #ffffff;
    background-blend-mode: multiply;
    background-size: cover;
}
#hero-section .hero-header{
    font-size: 4rem;
    font-weight: bolder;
}
#hero-section .hero-subheader{
    font-size: 2rem;
    font-weight: lighter;
    line-height: 150%;
}
#hero-paragraph-container{
    background-color: rgba(0, 0, 0, 0.7);
    bottom: 0;
}
.hero-paragraph{
    font-size: 1.2rem;
    line-height: 150%;
}

.aminity-section{
    margin: 1rem 0;
    display: grid;
    column-gap: 10px;
    row-gap: 10px;
    grid-template-columns:  repeat(2, 1fr);
}
.aminity{
    position: relative;
}
.aminity img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    border-radius: 1rem;
    aspect-ratio: 1 / 1;
}
.aminity .overlay{
    opacity: 0;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 1rem;
    color: var(--light);
    font-size: 1.4rem;
    font-weight: bold;
    border-radius: 1rem;
    backdrop-filter: blur(6px) saturate(180%);
    -webkit-backdrop-filter: blur(6px) saturate(180%);
    background-color: rgba(0, 0, 0, 0.2);
    transition: 200ms;
}

.aminity .overlay:hover{
    opacity: 1;
}

.aminity .overlay-action a{
    font-size: 2rem;
    text-decoration: none;
    color: var(--orange-red);
}

.aminity .overlay-action:hover{
    background-color: var(--orange-red);
}
.aminity .overlay-action:hover > a{
    color: var(--light);
}

#nearby-attractions-section{
    position: relative;
    height: clamp(35vh, 45vh, 50vh);
    background: url('../images/nearby-attractions.png') center no-repeat, #ffffff;
    background-blend-mode: multiply;
    background-size: cover;
}

#nearby-attractions-section h1{
    font-weight: bold;
    font-size: 25px;
}

#activities-section h1{
    font-weight: lighter;
}

.activity-row{
    border: 1px solid #ccc;
    border-radius: 1rem;
    margin: 2rem auto;
}

.activity-row img{
    border-radius: 1rem;
    transform: scale(1.05);
    width: 100%;
}
.activity-row p{
    font-size: 1.1rem;
    line-height: 150%;
}

.activity-row h4{
    text-transform: uppercase;
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .aminity-section{
        margin: 1rem 0;
        display: grid;
        column-gap: 10px;
        row-gap: 10px;
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Small & Medium devices (tablets, 768px and less) */
@media (max-width: 767px) {
    .navbar-light .navbar-toggler {
        color: rgba(0, 0, 0, 1);
        border-color: transparent;
        position: absolute;
        right: 20px;
        top: 30px;
    }

    .imgg1 img {
        transform: scale(.50);
        margin-left: -80px;
    }

    .imgg2 {
        position: absolute;
        right: 30px;
        top: -5px;
    }

    .imgg2 img {
        transform: scale(.65);
    }
}

