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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    background-image: url(https://upload.wikimedia.org/wikipedia/commons/thumb/5/5e/ANA_777-300_Taking_off_from_JFK.jpg/2560px-ANA_777-300_Taking_off_from_JFK.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}

.Logo {
    position: relative;
    top: -50px;
    background-position: center;
    
}

/* Header Styles */
header {
    background-color: #2c3e50c0;
    color: white;
    padding: -5rem 0;
    text-align: center;
}

header h1 {
    margin-bottom: .5rem;
    z-index: 2;
    position: relative;
}

h2 {
    text-align: center;
    margin-bottom: 1rem;
}

/* --Navigation-- */
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap; 
    gap: 2rem;
    margin-top: -6.2rem;
    z-index: 2;
    position: relative;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: lighter;
}

nav a:hover {
    text-decoration: underline;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 1rem auto;
    padding: 0 1rem;
}

.picks {
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.picks h2 {
    color: #2c3e50;
    margin-bottom: .1rem;
    margin-top: -2rem;
}

/* Destination Grid */
.Destinations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin: 2rem 0;
}

.Country-Card {
    background: rgba(255, 255, 255, 0.781);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-top: -2rem;
}

.Country-Card:hover {
    transform: translateY(-15px);
}

.Country-Card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 0.5rem;
}

.Country-Card h3 {
    color: #000000;
    margin-bottom: 0.5rem;
}

.Country-Card a {
    display: inline-block;
    background-color: #98cbea;
    color: rgb(0, 0, 0);
    padding: 1rem 1rem;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 1rem;
}

/* Content Section */
.Content-Section {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.Content-Section h3 {
    color: #2c3e50;
    margin-bottom: 0.1rem;
    border-bottom: 2px solid #083c5f;
}

.Content-Section ul {
    margin-left: 1rem;
    list-style-type: none;
    margin-left: 0.2rem;
}

.image-gallery {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.image-gallery img {
    width: 30%;
    border-radius: 10px;
}

/* Contact Form */
.Contact-Form {
    background: rgba(255, 255, 255, 0.936);
    padding: 2rem;
    border-radius:5px;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.contact-us h2 {
    background-color: rgba(255, 255, 255, 0.757);
    border-radius: 6rem;
}

.contact-us {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-us h2 {
    margin-right: 1rem;
    margin-bottom: 0.2rem;
}

.form-group {
    margin-bottom: auto;
    text-align: center;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: .1rem;
}

input, select, textarea {
    width: 100%;
    padding: .5rem;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 1rem;
}

button {
    background-color: #2c3e50;
    color: white;
    padding: 0.1rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: .8rem;
    font-weight: bold;
}

.download-pdf p {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.631);
    border-radius: 3rem;
    font-size: medium;
    font-weight: bolder;
}

button:hover {
    background-color: green;
}

/* Footer */
footer {
    background-color: #2c3e50bd;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 13rem;
}

@media (max-width: 768px) {
    nav {
        /* flex-direction: column; */
        display: flex;
        justify-content: flex-end;
        flex-wrap: wrap;
    }
}

    nav li {
        margin: 5px;
    }

.socials {
    text-align: right;

}