/* Reset some default styling */
* {
    box-sizing: border-box;
}

body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Font rules */
body {
    font-family: Arial, sans-serif;
}

/* Question styling */
.question {
    font-family: zapfino;
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
}

/* Text styling */
.text-content {
    font-family: Helvetica;
    font-size: 18px;
}

/* Accent styling */
.accent-text {
    font-family: Arial, sans-serif;
    font-size: 20px;
    font-style: italic;
    color: #777;
}

/* Navigation bar styles */
.navbar {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #1e1e1e;
    color: #ffffff;
    justify-content: flex-start;
}

.logo {
    margin-right: 60px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links li {
    margin-right: 0;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s ease, font-size 0.3s ease;
    font-size: 16px;
}

/* Change color and size on hover */
.nav-links a:hover {
    color: #FFD700;
    text-shadow: 0 0 2px #FFD700;
    font-size: 18px;
}

/* Hero section styles */
.hero {
    background-image: url('logo_bg_900.gif');
    background-position: center center;
    background-repeat: no-repeat;
    text-align: center;
    padding: 5px 0;
    width: 100vw;
    height: 514px;
}

/* Optional: Media Queries for smaller screens to adjust hero height */
@media (max-width: 800px) {
    .hero {
        height: 400px;
    }
}
@media (max-width: 500px) {
    .hero {
        height: 300px;
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Shots section styles */
.shots {
    padding: 5px;
}

.image-container {
    display: flex;
    justify-content: left;
    width: 100%;
    margin: 20px 0;
}

.location-image {
    max-width: 100%;
    height: auto;
}

.content {
    width: 100%;
}

/* Common styles for both cards */
.card {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    margin: 5px;
    max-width: 1300px;
    background-color: #f9f9f9;
    transition: background-color 0.3s ease;
    overflow: hidden;
}

/* Styles for the first card layout (image on the left) */
.card-left img {
    height: auto;
    display: block;
    margin-right: 30px;
}

.card-left-btm img {
    height: auto;
    display: block;
    align-self: flex-end; 
    margin-right: 30px;
}

/* Styles for the second card layout (image on the right) */
.card-right {
    justify-content: space-between;
}

.card-right img {
    height: auto;
    display: block;
    order: 1; /* Makes the image come last in the flex container */
    margin-left: 30px;
}

/* Change color on hover */
.card:hover {
    background-color: #e0e0e0;
}

.card img {
    max-width: 821px;
    height: auto;
}

.card p {
    flex: 1;
    margin: 0 10px;
}

.center-card {
    text-align: center;
    padding: 20px;
    background-color: #FFEB9C;
    color: #1e1e1e;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
}

.center-text {
    font-weight: bold;
}

/* Footer styles */
.footer {
    text-align: center;
    padding: 20px 0;
    background-color: #1e1e1e;
    color: #FFD700;
}
