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

body {
    background-color: #45968E;
    font-family: 'Poppins', sans-serif;
}

.content-wrapper {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.navbar {
    background-color: #fff;
    height: 80px;
    padding: 0.5rem;

}

.navbar-brand {
    font-weight: 500;
    color: #45968E;
    font-size: 24px;
    transition: 0.3s color;
}

.navbar-toggler {
    border: none;
    font-size: 1.25rem;

}

.navbar-toggler:focus, .btn-close:focus {
    box-shadow: none;
    outline: none;
}

.nav-link {
    color: #666777;
    font-weight: 500;
    font-size: 20px;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: black;
}

@media (min-width: 991px) {
    .nav-link::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background-color: #45968E;
        visibility: hidden;
        transition: 0.3s ease-in-out;
    }

    .nav-link:hover::before, .nav-link.active::before {
        width: 100%;
        visibility: visible;
    }
}

#hero-carousel {
    margin: 50px;
    color: white;
    text-shadow: 2px 2px 4px #000000;
}

.carousel-item p {
    font-family: 'Dancing Script', sans-serif;
}

.c-item {
    height: 480px;
}

.c-img {
    height: 100%;
    filter: brightness(0.6);
    object-fit: cover;
}

/* .carousel-caption h2 {
    letter-spacing: 0.3;
} */

/* .hero-section {
    background: url() no-repeat center;
    background-size: cover;
    width: 100%;
    height: 35vh;
} */

/* .hero-section::before {
    background-color: rgba(131, 171, 243, 0.6);
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
} */

.hero-section .hero-container {
    margin-top: 150px;
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center; 
    justify-content: center;
    color: #fff;
    opacity: 0.9;
    flex-direction: column;
}

.hero-section h1 {
    font-size: 1.8em;
    text-shadow: 2px 2px 4px #000000;
}

.hero-section h4 {
    font-family: 'Dancing Script';
    font-size: 1.2em;
    font-style: italic;
    text-shadow: 2px 2px 4px #000000;
}

.hero-section .hero-container-seville {
    margin-top: 150px;
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center; 
    justify-content: center;
    color: #fff;
    opacity: 0.9;
    flex-direction: column;
}

.hero-container-seville h1 {
    font-size: 3em;
    font-family: 'Dancing Script', sans-serif;
} 

/* .hero-container-seville:hover h1 {
    color: #2b4c55;
    transition: 0.3s;
} */

.hero-container-seville img {
    margin-bottom: 50px;
    margin-top: 40px;
    position: relative;
    width: 100vw;
    left: calc(-50vw + 50%);
    height: 400px;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    object-fit: cover;
    display: block;
}

.written-container-seville {
    background-color: #fff;
    margin: 30px;
    padding: 30px;
    border-radius: 4px;
}

.written-container-seville p {
    display: flex;
    margin: 30px;
    font-size: 18px;
}

.written-seville-header {
    color: #2b4c55;
    border-bottom: 1px solid #333;
}

.top-three-seville h3{
    color: #2b4c55;
}

.recommendations-container {
    background-color: #fff;
    margin: 30px;
    padding: 30px;
    border-radius: 4px;
}

.rec-title {
    color: #2b4c55;
    font-size: 25px;
    border-bottom: 1px solid #333;
}




blockquote {
    padding: 40px;
    margin: 35px;
    color: rgb(216, 211, 211);
    text-shadow: 2px 2px 4px #000000;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    text-align: center;
    font-style: italic;
    background-color: #2b4c55;
}

.blockquote-footer {
    color: white;
}

.about-section {
    background-color: #45968E;
}

.about-section .about-container {
    max-width: 1200px;
    display: flex;
    gap: 30px;
    margin: 20px 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-header h1 {
    margin: 40px;
    font-family: 'Dancing Script', sans-serif;
    text-shadow: 2px 2px 4px #000000;
    font-size: 100px;
    text-align: left;
    color: #fff;
}

#about-item-text {
    background-color: #f1eaea;
    max-width: 600px;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}


.about-item p {
    font-size: 18px;
    text-align: left;
    color: #2b4c55;
    padding: 8px;
}

.about-img {
    max-width: 460px;
    height: auto;
}
#btnScrollToTop {
    position: fixed;
    font-size: 2.1em;
    right: 10px;
    bottom: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    border: none;
    color: #45968E;
    cursor: pointer;
}

#btnScrollToTop:hover {
    background:#45968E;
    color: white;
    transition: 0.5s;
}

.footer-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    background-color:#2b4c55;
}

.footer-item {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

#social-media {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px auto 0px;
}

#social-media a {
    text-decoration: none;
    padding: 6px;
    background-color: #45968E;
    margin: 10px;
    border-radius: 50%;

}

#social-media a i {
    font-size: 40px;
    color: #fff;
    opacity: 0.9;
}

/* Hover effects on social media icons */
#social-media a:hover {
    background-color: #fff;
    transition: 0.5s;
}

#social-media a:hover i {
    color: #45968E;
    transition: 0.5s;
}

#footer-nav {
    display: flex;
    margin: 20px auto;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

#footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    opacity: 0.7;
    transition: 0.5s;
}

#footer-nav a:hover {
    opacity: 1;
}

#footer-bottom {
    color: white;
    opacity: 0.7;
    text-align: center;
}

/* About */
.about-introduction {
    background-color: #f1eaea;
    margin-top: 20px;
    padding: 10px;
}
.about-introduction p {
    color: #2b4c55;
    font-size: 20px;
    display: flex;
    justify-content: center;
    margin: 30px;
}

.col {
    padding: 10px;
}
.card {
    display: flex;
    margin-left: 30px;
    margin-right: 30px;
    transition: all 0.3s;
    cursor: pointer;
    margin-bottom: 10px;
}

.card:hover {
    transform: scale(1.05);
}

.card-title {
    color: #471c1c;
    font-size: 3rem;
    font-family: 'Dancing Script', sans-serif;
    margin-bottom: 1rem;
    font-weight: 500;
    text-align: center;
}

.card p {
    color: #3D3D3D;
    font-size: 16px;
    letter-spacing: 0.1rem;
    line-height: 1.7;
    text-align: center;
}

.card img {
    display: block;
    width: 100%;
    height: 18rem;
}

/* Contact form */

.container-form {
    width: 100%;
    height: 80vh;
    background-color: #45968E;
    display: flex;
    align-items: center;
    justify-content: center;
}

form {
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 2vw 4vw;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
}

form h3 {
    color: #555;
    font-family: 'Dancing Script', sans-serif;
    font-size: 50px;
    font-weight: 800;
    margin: 20px;
}

form input, form textarea {
    border: 0;
    margin: 10px;
    padding: 20px;
    outline: none;
    background: #f5f5f5;
    font-size: 16px;
}

form button {
    padding: 15px;
    background: #2b4c55;
    color: #fff;
    font-family: 'Dancing Script', sans-serif;
    font-size: 25px;
    border: 0;
    outline: none;
    cursor: pointer;
    width: 150px;
    margin: 20px auto 0;
    border-radius: 30px;
}

/* Map */


.map-about-section p {
    font-size: 20px;
    padding: 10px;
    background-color: #2b4c55;
    color: #fff;
    display: flex;
    justify-content: center;
}

/* Seville Quiz */
.quiz-container {
    background-color: #fff;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    margin: 100px auto 50px;
    padding: 30px;

}

.quiz-container h1 {
    font-size: 25px;
    color: #2b4c55;
    font-weight: 600;
    border-bottom: 1px solid #333;
    padding-bottom: 30px;
}

/* .quiz-container h2 {
    font-size: 25px;
    color: #2b4c55;
    font-weight: 600;
    border-bottom: 1px solid #333;
    padding-bottom: 30px;
} */

.quiz {
    padding: 20px 0;
}

.quiz h2 {
    font-size: 18px;
    color: #2b4c55;
    font-weight: 600;
}

.quiz-btn {
    background: #45968E;
    color: #fff;
    font-weight: 500;
    width: 100%;
    border: 1px solid #2b4c55;
    padding: 10px;
    margin: 10px 0;
    text-align: left;
    border-radius: 4px;
    cursor: pointer;
}

.quiz-btn:hover:not([disabled]) {
    background: #333;
    color: #fff;
    transition: all 0.3s;
}

.quiz-btn:disabled {
    cursor: no-drop;
}

#next-btn {
    background: #2b4c55;
    color: #fff;
    font-weight: 500;
    width: 150px;
    border: 0;
    padding: 10px;
    margin: 20px auto 0;
    border-radius: 4px;
    cursor: pointer;
    display: none;
}

.correct {
    background-color: #9aeabc;
}

.incorrect {
    background: #ff9393;
}


/* Style Destination tester */

.dest-btn {
    display: block;
    width: 100%;
    padding: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
    color: #2b4c55;
    background-color: #DCE4FF;
    border: none;
    border-radius: 6px;
    transition: 0.2s;
    cursor: pointer;
}

.dest-btn span {
    margin-left: 1rem;
    transition: 0.2s;
}

.dest-btn:hover, .dest-btn:active {
    background-color: #2b4c55;
    color: #DCE4FF;
}

.dest-btn:hover, .dest-btn:active span {
    margin-left: 0.3rem;
}

/* Carousel button */
.carousel-item .carousel-btn {
    align-items: center;
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    color: #2b4c55;
    background-color: #DCE4FF;
    font-weight: 500;
    transition: 0.2s;
    cursor: pointer;
}

.carousel-btn span {
    margin-left: 1rem;
    transition: 0.2s;
}

.carousel-btn:hover, .carousel-btn:active {
    background-color: #2b4c55;
    color: #DCE4FF;
}

.carousel-btn:hover, .carousel-btn:active span {
    margin-left: 0.3rem;
}

/* @media (max-width: 767px) {
    .carousel-caption {
        font-size: 10px;
    }
} */

@media (max-width: 1145px) {
    .about-img {
        max-width: 370px;
        margin-top: 50px;
    }

    #about-item-text {
        max-width: 500px;
    }
}

@media (max-width: 650px) {
    .about-img {
        max-width: 300px;
    }

    .navbar-brand {
        opacity: 0;
        font-size: 0;
    }
}