html {
    scroll-behavior: smooth;
}



#hero {
    height: 800px;
    background-image: url("/img/highlights/craig-marolf-LrDsApWs3C0-unsplash\ for\ website.jpg");
    background-position: center;
    background-size: cover;
    /* Playing around CSS selectors */
    justify-content: center;
    display: flex;
   
   
   
    
}

#hero-content {
    width: 800px;
    background-color: rgba(51, 47, 47, 0.8);
    box-shadow: 2px 4px 8px rgb(68, 67, 67) ;
    border-radius: 8px;
    text-align: center;
    margin: 0 auto;
    padding: 50px 0;
    position: relative;
    top: 200px;
 
   

    
}

#hero-content h1 {
    color:yellow;
    text-transform: uppercase;
    font-size: 50px;
    margin: 0;
    font-family: "Raleway", sans-serif;
}



#hero-content p {
    color: yellow;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 32px;
}

#hero-content a {
    text-decoration: none;
    background-color: rgb(255, 251, 0);
    padding: 12px 24px;
    color: black;
    border-radius: 5px;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 2px 4px 8px rgb(68, 67, 67);
}

#hero-content a:hover {
    background-color: rgb(255, 238, 0);
}

#highlights {
    padding: 24px;
    background: linear-gradient(0deg, rgb(227, 255, 253), rgb(202, 243, 240));
}




/* Highlight */

#highlights h2 {
    text-align: center;
    text-transform: uppercase;
    font-size: 40px;
    color: rgb(59, 65, 64);
    margin: 24px 0;
}

/* #highlights h2  p {
    text-align: center;
    text-transform: uppercase;
    font-size: 40px;
    color: rgb(59, 65, 64);
    margin: 24px 0;
} */

/*#Contacts {*/
/*    text-align: center;*/
/*    text-transform: uppercase;*/
/*    font-size: 40px;*/
/*    color: rgb(59, 65, 64);*/
/*    margin: 24px 0;*/
/*}*/


#destinations {
    display: flex;
    margin: auto;
    width: 90%;
    margin-bottom: 4px;
    justify-content: center;
}

.destination {
    margin: 0 20px;
    text-transform: uppercase;
}

.destination p {
    text-align: center;
    font-size: 24px;
    color: rgb(124, 123, 123);
    margin: 20px 0;
}

.destination img {
    height: 200px;
    width: 100%;
    box-shadow: 2px 4px 8px rgb(68, 67, 67);
    border-radius: 10px;
    object-fit: cover;
}

.destination strong {
    color: rgb(0, 160, 70);
}

#Contacts {
    text-align: center;
    text-transform: uppercase;
    font-size: 40px;
    color: rgb(59, 65, 64);
    margin: 24px 16px; /* Added horizontal margin for mobile breathing room */
    padding: 0 10px; /* Safe padding */
    word-wrap: break-word; /* Ensure long words wrap */
}

@media (max-width: 600px) {
    #Contacts {
        font-size: 24px; /* Scale down font size for mobile */
    }

    #Contacts p {
        font-size: 16px; /* Smaller font for paragraph text */
        text-transform: none; /* Optional: Keep body text readable */
    }

    #Contacts h2 {
        font-size: 20px;
    }
}
