/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}

body {
    font-family: Arial, sans-serif;
    color: #333333; 
    line-height: 1.6;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* header */
.header {
    background-color: #ffffff;
    padding: 20px 0;
    position: sticky;
    border-bottom: 1px solid #eeeeee;
}

.nav-content {
    display: flex;
    width: auto;
    align-items: center;
}

.logo {
    float: left; 
}

.logo a {
    font-family: 'Times New Roman', serif; 
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: #333333;
}

#nav-links {
    padding-left: 25%;
    float: right; 
    text-align: right; 
}

#nav-links a {
    display: inline-block; 
    text-decoration: none;
    color: #333333;
    margin-left: 30px;
    font-weight: 400;
    font-size: 1rem;
    padding-top: 8px;
}

#nav-links a:hover {
    color: blue;
}

.hero {
    padding-top: 100px;
    padding-bottom: 100px;
    min-height: 400px;
    background-image:linear-gradient(lightblue, coral);
    background-position: center center;
    background-size: cover;
    text-align: center;
    position: relative;
    color: #ffffff;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto; 
}

.hero-content h1 {
    font-family: 'Times New Roman', serif;
    font-size: 3rem; 
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px #000000; 
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px #000000;
}

.skip-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #A0522D; 
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    border: 2px solid #A0522D;
}

.skip-button:hover {
    background-color: #8B4513; 
    border-color: #8B4513;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.news-col {
    width: 100%;
    margin-bottom: 20px;
}

.section-heading {
    font-family: 'Times New Roman', serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    margin-top: 40px;
}

/* about page */
.about-page {
    padding: 60px 20px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto; 
    text-align: left;
    font-size: 1.1rem; 
    line-height: 1.8; 
}

.intro-text {
    margin-bottom: 25px;
    color: #444;
}

.sub-heading {
    font-family: 'Times New Roman', serif; 
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #A0522D; 
    border-bottom: 1px solid #eee; 
    padding-bottom: 10px;
}

/* Image cards */
.image-link-card {
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    text-align: center;
    margin-bottom: 20px;
    width: 100%; 
}

.image-link-card a {
    text-decoration: none;
    color: #333333;
    display: block; 
}

.image-link-card:hover {
    transform: scale(1.1);
    transition: all 0.15s ease-in-out;
    box-shadow: 0 12px 24px;
}

.responsive-image {
    width: 100%; 
    height: auto;
    display: block;
}

.image-link-card h3 {
    padding: 15px;
    font-size: 1.2rem;
    margin: 0;
}

/* Links Page */
.links-page {
    padding: 60px 20px;
    min-height: 60vh; 
    text-align: center;
}

.intro-text {
    max-width: 800px;
    margin: -20px auto 40px; 
    font-size: 1.1rem;
    color: #555;
}

.links-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: left; 
}

.links-list {
    list-style: none; 
    padding: 0;
}

.link-item {
    margin-bottom: 25px;
    border-bottom: 1px dashed #cccccc;
    padding-bottom: 15px;
}

.link-item h4 {
    font-family: 'Times New Roman', serif; 
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #333;
}

.link-item p {
    color: #666;
    margin-bottom: 10px;
}

.link-item a {
    color: #A0522D; 
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s;
}

.link-item a:hover {
    color: #8B4513;
    text-decoration: underline;
}

/* travel Tips */
.tips-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 500px; 
}

.tip-question {
    background-color: #f9f9f9;
    padding: 15px; 
    margin-bottom: 15px; 
    border-left: 5px solid #A0522D; 
    transition: background-color 0.2s;
}

.tip-question:hover {
    background-color: #eee; 
    font-weight: bold;
}

/* Style the Answer Box */
#answer-box {
    margin-top: 30px;
    padding: 20px;
    border: 2px solid #A0522D;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

#answer h2 {
    color: #A0522D;
    margin-bottom: 10px;
}

#answer-text {
    font-size: 1.1rem;
    line-height: 1.6;
}

/*video */
.video-section {
    margin-top: 60px;
}

.local-video {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    display: block;
    margin: 0 auto;
    background-color: #000;
}

/*destination*/
.destination-row {
    margin-bottom: 60px; 
    background-color: #fff;
    border-bottom: 1px solid #eee; 
    padding-bottom: 40px;
}

.dest-img {
    width: 100%;
    height: auto;
    border-radius: 8px; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.dest-text-col h2 {
    font-family: 'Times New Roman', serif;
    font-size: 2rem;
    color: #A0522D; 
    margin-bottom: 10px;
}

/*review*/
#form {
    background-color: #f9f9f9;
    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
}

fieldset {
    border: 2px solid #A0522D; 
    margin-bottom: 20px;
    padding: 15px;
    background-color: #fff;
    border-radius: 5px;
}

legend {
    color: #A0522D;
    font-weight: bold;
    font-family: 'Times New Roman', serif;
    padding: 5px;
    font-size: 1.2em;
}

label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="date"],
input[type="tel"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

input[type="radio"] {
    width: auto;
    margin-right: 10px;
}

/* The Submit Button */
.btn {
    background-color: #A0522D;
    color: #fff;
    font-size: 1.2em;
    border: none;
    border-radius: 10px;
    margin-top: 20px;
    width: 100%;
    padding: 10px;
}

.btn:hover {
    background-color: #8B4513;
}

/*contact*/
.info-block {
    margin-bottom: 30px;
    padding: 15px;
    background-color: #f9f9f9;
    border-left: 4px solid #A0522D;
}

.info-block h4 {
    color: #A0522D;
    margin-bottom: 5px;
}

.contact-map-col iframe {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.map-note {
    font-style: italic;
    color: #666;
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background-color: #f8f8f8; 
    color: #777777;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #eeeeee;
    clear:both;
}

/*faqs*/

#answer {
    text-align: center;
    font-weight: bold;
    width: 80%;
    margin: 0 auto;
}

#answer h2 {
    display: none;
}

.footer p {
    margin-bottom: 10px;
}

.footer a {
    color: #777777;
    text-decoration: none;
}

/* Media Queries  */
@media screen and (min-width: 620px), print { 

    .image-link-card {
        float: left;
        width: 48%; 
        margin-right: 4%;
        margin-bottom: 4%;
    }

    .image-link-card:nth-child(2n) {
        margin-right: 0;
    }

    .logo {
        float: left;
        text-align: left;
    }

    .logo a {
        font-family: 'Times New Roman', serif; 
        font-size: 1.6rem;
        font-weight: 700;
        text-decoration: none;
        color: #333333;
    }

    .contact-info-col {
        float: left;
        width: 40%;
        margin-right: 5%;
    }
    
    .contact-map-col {
        float: left;
        width: 55%;
    }

    .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 30px;
    }

    .btn {
        grid-column: 1 / span 2;
    }
    
    .dest-image-col {
        float: left;
        width: 48%;
    }
    
    .dest-text-col {
        float: right;
        width: 48%;
        padding-top: 20px; 
    }

    .reverse-img {
        float: right;
    }
    
    .reverse-text {
        float: left;
    }
}

    @media screen and (min-width: 1000px) {
        .image-link-card {
            float: flex;
            margin-right: 4%;
            margin-bottom: 4%;
        }

        .image-link-card:nth-child(2n) {
            margin-right: 0;
        }

        .news-col {
            float: left;
            width: 32%; 
            margin-right: 2%;
        }

        .news-col:last-child {
            margin-right: 0;
        }

        .news-col .image-link-card {
            margin-bottom: 30px; 
            width: 100%; 
        }

        .tall-card .center-img {
            height: 500px; 
            object-fit: cover; 
        }
        
        .tall-card h3 {
            font-size: 1.5rem; 
            margin-top: 15px;
        }
    }

    @media screen and (min-width: 1921px) {
        #wrapper {
            width: 1920px;
            margin: 0 auto;
        }

        .image-link-card {
            float: left;
            width: 22%; 
            margin-right: 4%;
            margin-bottom: 4%;
        }

        .image-link-card:nth-child(2n) {
            margin-right: 4%;
        }

        .image-link-card:nth-child(4n) {
            margin-right: 0;
        }

        main h3 {
            font-size: 2em;
        }
    }