/* Reset and basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}


body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    line-height: 1.6;
    color: #333;
}

header {
    background-color: #2b2e4a;
    color: #fff;
    padding: 1rem;
    text-align: center;
}

nav a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
}

main {
    padding: 2rem;
}

.intro, .featured {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.featured .destinations {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.featured article {
    width: calc(50% - 1rem);
    background: #f4f4f9;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.featured img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

footer {
    background-color: #2b2e4a;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

footer a{
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
}
/* Social Media Section */
.social-media {
    margin-top: 30px;
    text-align: center;
}

.quote{
    margin-top: 100px;
    margin-bottom: 70px;
    text-align: center;
}

.social-media h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.social-media .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-media .social-icon {
    padding: 10px 20px;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
}

.social-media .facebook {
    background-color: #3b5998;
}

.social-media .twitter {
    background-color: #3b5998;
}

.social-media .instagram {
    background-color: #3b5998;
}

.social-media .linkedin {
    background-color: #3b5998;
}

.social-media .social-icon:hover {
    opacity: 0.8;
}


.book-now-btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    background-color: #0a480c; /* Green color */
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}