/* Basic Reset */
body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Hide horizontal scroll */
    height: 100%; /* Fill the entire viewport */
}

/* Default (Nighttime) */
body {
    font-family: 'Arial', sans-serif;
    color: #7cdeff;
    background-color: #040622;
}

/* Cityscape */
.cityscape {
	background-color: green;
    background-image: url('img/cyberpunk-night.jpg');
    background-repeat: repeat-x;
    background-position: center;
    height: 95vh;
    display: flex; /* Ensures children are in a row */
}

/* Wrapper for the entire layout */
.wrapper {
    display: flex;
    overflow-x: auto; /* Enable horizontal scroll */
    overflow-y: hidden; /* Hide verticle scroll */
    position: relative;
}

/* Content Area */
.scroll-content {
    display: flex;
    height:100%;
}

/* Landmark Base Style */
.landmark {
    position: relative;
    min-width: 80vw;
    height: 95%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    margin: 2vw 10vw;
    border: 3px solid #7cdeff;
    box-shadow: 0 0 15px #4caf50;

}

.landmark-content {
    max-width: 70vw;
    padding: 5vw;
}

/* Landmark Details */
.landmark-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}

.landmark-image {
    width: 100%;
    max-width: 70vh;
    height: 40vh;
    margin-bottom: 15px;
    border: 3px solid #7cdeff;
    box-shadow: 0 0 15px #4caf50;
}

.landmark-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.landmark-highlights li {
    font-size: 1.2rem;
    margin: 10px 0;
    text-shadow: 0 0 5px #7cdeff;
}

/* Custom Button with Cut Corners */
.landmark-link {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2rem;
    text-transform: uppercase;
    color: yellow;
    background: black;
    text-decoration: none;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.landmark-link:hover {
    background: yellow;
    color: black;
    box-shadow: 0 0 20px #ff4d4d, 0 0 30px #7cdeff;
}

.invisible-element {
    height: 100%; /* Match the height of the landmarks */
    background: transparent; /* Ensure it’s invisible */
    width: 100vw;
}
/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.separator{
    background: url('img/utilityPoleSeparator.svg') no-repeat center center;
    background-size: 100% 100%; /* scaling within containing div */
    height: 100%;
    min-width: 10vw;
    box-sizing: content-box;
}

/* Footer */
footer {
    position: fixed; /* Fix it to the bottom */
    bottom: 0;
    left: 0;
    height: 5vh;
    width: 100%; /* Full width */
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    text-align: center; /* Center the text */
/*    padding: 20px; /* Add some padding */
    z-index: 10; /* Ensure it appears above other content */
}

#nav {width:100%;background-color:blue;}
#nav a {
	float:left;
	color: yellow;
	text-decoration: none;
	margin: 10px;
	width: 12.5%;
	text-align: center;
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
    header h1 {
        font-size: 28px;
    }
    .featured-post, .editor, .post {
        padding: 10px;
    }
    #newsletter form {
        flex-direction: column;
    }
}