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

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
}

/* Color Palette */
:root {
    --primary-color: rgb(41, 128, 185);
    --secondary-color: hsl(48, 89%, 50%);
    --text-color: #333;
    --background-color: #f4f4f4;
    --accent-color: #27ae60;
    --hover-color: #e74c3c;
}

/* Header */
header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: var(--background-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: background-color 0.5s ease, padding 0.5s ease;
}

header.scrolled {
    background-color: rgba(244, 244, 244, 0.95); /* Slightly transparent background on scroll */
    padding: 10px 0;
}

/* Navigation */
.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 50px;
    transition: padding 0.5s ease; /* Smooth transition for padding */
}

.logo {
    height: 50px;
    transition: height 0.5s ease; /* Smooth transition for logo size */
}

nav {
    display: flex;
    justify-content: flex-end;
    flex-grow: 1;
}

.nav-links {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-links li {
    margin: 0 15px;
    display: inline-block;
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 20px;
    font-weight: 400;
    position: relative;
    transition: color 0.3s ease;
}

/* Hover effects for navigation links */
.nav-links li:nth-child(odd) a:hover {
    color: var(--hover-color);
}

.nav-links li:nth-child(even) a:hover {
    color: var(--accent-color);
}

.nav-links a:hover::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 30px;
    background-image: url('/media/statue.png');
    background-size: 40px 30px;
    background-repeat: no-repeat;
}
/*  Mobile responsive  */
@media (max-width: 768px) {
    .nav-links a {
        font-weight: bold;
        font-size: 2.5rem;
    }
}

/* Footer */

footer {
    display: flex;
    width: auto;
    justify-content: space-evenly;
    flex-direction: column;
    text-align: center;
    background-color: rgb(42, 41, 40);
    color: var(--background-color);
}

.menu-footer {
    font-size: 1.2rem;
    margin: 0 10px;
    display: flex;
    justify-content: center;
    transition: 0.5s;
    text-decoration: none;
    opacity: 0.75;
    font-weight: 300;

}

.menu-footer a {
    padding: 10px;
    color: rgb(247, 247, 247);
    text-decoration: none;
}
.menu-footer li {
    list-style: none;
}
.menu-footer a:hover {
    color: var(--hover-color);
}

/* Hero Section */
#hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
@media (max-width: 768px) {
    #hero-section {
        height: 50vh;
    }

    .content {
        visibility: hidden;
    }


}
.content {
    max-width: 800px;
    z-index: 5; /* Ensure content is above the image */
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    padding: 30px;
    border-radius: 10px;
}

.content h1 {
    font-size: 64px;
    font-weight: 900; /* Bolder text */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* Text shadow for better contrast */
}

.content h1 span {
    color: var(--secondary-color);
}

.cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 15px;
    font-weight: bold;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5); /* Button shadow for emphasis */
}

/* Image Styling */
.image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Introduction Section */
#introduction-section {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 20px;
    background-color: var(--background-color);


}

#introduction-section h2 {
    padding: 15px;
}
#introduction-section h3 {
    padding: 15px;
    font-weight: 600;
    font-size: 2.5em;
}

#introduction-section p {
    margin: 10px 25px;
}
#introduction-section div p {
    margin: 10px 25px;
    font-size: 1.5em;
}

/* Introduction Section| -- Cards Boxes-- | */
#introduction-section img {
    width: 70%;
    height: 50vh;
    border-radius: 20px;
    object-fit: cover;
    border-radius: 10px;
}

.left-container,
.right-container {
    margin-top: 20px;
    padding: 25px;
    width: 100%;
    height: 55vh;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.left-container {
    flex-direction: row;
}

.right-container {
    flex-direction: row-reverse;
}

.left-container div,
.right-container div {
    text-align: center;
}

.left-container div h3,
.right-container div h3 {
    padding: 20px;
    font-size: x-large;
}

.left-container div p,
.right-container div p {
    padding: 10px;
}

/* Review Section */
#review-section {
    width: 100%;
    padding: 10px;
    background-color: rgb(80, 133, 142);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

#review-section div img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 5px;
    object-fit: cover;
}

#review-section div p {
    width: 250px;
    padding: 15px;
    background-color: var(--background-color);
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.review-member1,
.review-member2 {
    text-align: center;
    width: 250px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-bar {
        padding: 20px;
    }

    .nav-links {
        margin-top: 10px;
        justify-content: center;
    }

    .nav-links li {
        margin: 5px 10px;
    }

    .nav-links a {
        font-size: 16px;
    }

    #introduction-section img {
        width: 90%;
        height: auto;
    }

    .left-container,
    .right-container {
        flex-direction: column;
        height: auto;
    }

    #review-section {
        flex-direction: column;
        height: auto;
    }

    #review-section div {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .nav-bar {
        flex-direction: column;
        align-items: center;
    }

    .logo {
        height: 40px;
    }

    .nav-links {
        margin-top: 15px;
    }

    .nav-links li {
        margin: 5px;
    }

    .nav-links a {
        font-size: 14px;
    }
}


/* Places Section */
#places-section {
    width: 100%;
    padding: 20px;
    background-color: var(--background-color);
}

#places-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.place-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.place-card {
    width: 300px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.place-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.place-info {
    padding: 20px;
}

.place-info h3 {
    margin-bottom: 10px;
}

.place-info p {
    margin-bottom: 5px;
}

.place-info p.hours,
.place-info p.price {
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-bar {
        padding: 20px;
    }

    .nav-links {
        margin-top: 10px;
        justify-content: center;
    }

    .nav-links li {
        margin: 5px 10px;
    }

    .nav-links a {
        font-size: 16px;
    }

    .place-container {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .nav-bar {
        flex-direction: column;
        align-items: center;
    }

    .logo {
        height: 40px;
    }

    .nav-links {
        margin-top: 15px;
    }

    .nav-links li {
        margin: 5px;
    }

    .nav-links a {
        font-size: 14px;
    }
}


/* Transport Section */
#transport-section {
    display: flex;
    padding: 40px;
    background-color: var(--background-color);
}

.sidebar {
    flex: 1;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-right: 30px;
}

.sidebar h2 {
    margin-bottom: 20px;
}

.sidebar .nav-links {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.sidebar .nav-links li {
    margin: 10px 0;
}

.sidebar .nav-links a {
    color: var(--text-color);
    font-size: 18px;
}

.content-area {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    justify-content: center;
    flex: 2;
    background-color: white;
    padding: 5px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content-area p {
    text-align: center;
    padding: 25px;
}

.content-area img {
    padding-top: 15px;
    width: 100px;
    height: 100px;
}
.content-area div {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    #transport-section {
        flex-direction: column;
    }

    .sidebar {
        flex: auto;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .content-area {
        flex: auto;
    }
}

/* Travel Tips Section */
#travel-tips-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

#travel-tips-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.tip-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.tip-card h3 {
    color: var(--accent-color);
    margin-bottom: 10px;
}

.tip-card p {
    color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-bar {
        padding: 20px;
    }

    .nav-links {
        margin-top: 10px;
        justify-content: center;
    }

    .nav-links li {
        margin: 5px 10px;
    }

    .nav-links a {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .nav-bar {
        flex-direction: column;
        align-items: center;
    }

    .logo {
        height: 40px;
    }

    .nav-links {
        margin-top: 15px;
    }

    .nav-links li {
        margin: 5px;
    }

    .nav-links a {
        font-size: 14px;
    }
}