/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #FFF;
}

/* Sticky Box */
.sticky-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    height: 211px;
    z-index: 1000;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 20px;
    padding-bottom: 10px; 
}

.logo-of-co {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    width: calc(200px / 3 * 2); 
    height: calc(200px / 3 * 2);
    object-fit: contain;
    background-color: transparent;
    border-radius: 0;
}

.text-logo-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(200px * 1.5); 
    height: calc(100px * 1.5);
    object-fit: contain;
    background-color: transparent;
    border-radius: 0;
}

.nav-buttons {
    display: flex;
    gap: 15px;
    margin-left: auto;
    margin-right: 40px; 
}

.nav-buttons a {
    color: #FFF;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    background-color: #000;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 20px;
}

.nav-buttons a:hover {
    background-color: #444;
    transition: background-color 0.3s;
}

/* Back Button */
.back-to-countries {
    position: absolute;
    top: 250px; 
    left: 40px;
    font-size: 20px;
    color: #FFF;
    text-decoration: none;
    background-color: transparent;
    padding: 10px 20px;
    border: 1px solid #FFF;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.back-to-countries:hover {
    background-color: #444;
    color: #FFF;
}

/* Page Title */

.page-title {
    font-family: 'Jacques Francois', serif;
    font-size: 40px;
    color: #FFFFFF;
    text-align: center;
    margin-top: 250px; 
    margin-bottom: 40px;
}

/* Photo */

.photo-placeholder-container {
    width: 600px;
    height: 423.43px;
    background-color: #252930;
    border-radius: 20px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.statue-of-liberty {
    width: 600px;
    height: 423.43px;
    object-fit: cover; 
}


.photo-placeholder-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #FFFFFF;
    text-align: center;
}

.picture-credit {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #FFFFFF;
    text-align: center;
    margin-top: 15px;
}


/* Flex Container for Vertical Stacking */
.flex-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 850px;
    margin: 100px auto 0; 
    gap: 80px;
}

/* Large Grey Boxes */
.large-grey-box {
    background-color: #252930;
    border-radius: 20px;
    width: 100%;
    max-width: 850px;
    height: auto;
    display: flex;
    flex-direction: column; 
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    transition: background-color 0.3s;
}

.large-grey-box:hover {
    background-color: #333;
}

/* City Headers */
.city-header {
    font-family: 'Gabriela', serif;
    font-size: 30px;
    color: white;
    margin: 0;
    text-align: center;
    margin-bottom: 20px;
}

/* City Info Box */
.city-info-box {
    margin-top: 80px;
    width: 796px; 
    height: 180px; 
    background-color: #3E4A5F;
    border-radius: 20px;
    opacity: 100%;
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    color: white;
    text-align: center;
    margin: 0 auto; 
    padding: 20px; 
    box-sizing: border-box; 
}


    

/* City Subheader */
.city-subheader {
    font-family: 'Gabriela', serif;
    font-size: 24px;
    color: white;
    margin-top: 100px;
    text-align: center;
}

/* Small Box Container */
.small-box-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px; 
    width: 796px; 
}

/* Small Box */
.small-box {
    background-color: #3E4A5F;
    border-radius: 20px;
    width: calc(50% - 10px); 
    height: auto; 
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    padding: 20px; 
    box-sizing: border-box;
}

.image-holder {
    width: 255px;
    height: 255px;
    background-color: #252930; 
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px; 
}

.small-box-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; 
    border-radius: 10px;
}

.photo-credit {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: white;
    margin-top: 5px; 
    text-align: center;
}

.place-name {
    font-family: 'Inter', sans-serif;
    font-size: 18px; 
    color: white; 
    margin-top: 15px; 
    text-align: center;
}









