/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #000;
}
/* Generic container */
.container {
    max-width: 1500px; /* sets the page width */
    margin: 0 auto; /* centers the container */
    padding: 0 20px; /* optional: breathing room on sides */
}
/* --- NAV SECTION CSS --- */
/* Navbar */
header {
    background: #000;
    color: #fff;
}
.navbar {
    display: flex;
    align-items: center;
    padding: 1rem;
    height: 192px;
}
/* Social Media Images */
.social-container {
    display: flex;
    padding-left: 100px;
    gap: 20px;
    flex: 1; /* take equal space on the left */
    justify-content: flex-start;
    align-items: center;
    margin-left: 0;
}
.image-container {
    position: relative;
    width: 42px;
    height: 42px;
    cursor: pointer;
}
.image-container img.base-img, .image-container img.hover-img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 42px;
    height: 42px;
    transform: translate(-50%, -50%);
    display: block;
}
.image-container img.hover-img {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.image-container:hover img.hover-img {
    opacity: 1;
}
/* Home Page Logo */
.ST-header-id-img {
    flex: 0; /* logo stays fixed size */
    padding-right: 100px;
    text-align: center;
}
/* Location links container */
.locations {
    display: flex;
    gap: 20px;
    flex: 1; /* equal space on the right */
    justify-content: flex-end;
    align-items: center;
}
/* Location link adornments */
.location-link {
    display: inline-block;
    padding: 0.7rem 1rem;
    margin-right: 20px;
    margin-bottom: 15px;
    background-color: #fff;
    color: #7b0404;
    border: 4px solid #000;
    letter-spacing: 1px;
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
    transition: background-color 0.3s ease;
}


.location-link:hover {
    background-color: #7b0404;
    border: 4px solid #FF3700;
    color: white;
}
.location-card {
    background: #7b0404;
    border: 1px solid #ddd;
    border-radius: 0px;
    padding: 6px;
    padding-bottom: 50px;
    text-align: center;
    font-family: "Trykker", serif;
}
.location-card img {
    border: 1px solid #000;
    border-radius: 8px;
    padding: 2px;
    text-align: center;
    font-family: "Trykker", serif;
}
.location-title {
    font-size: 4rem;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: #FFF;
    text-shadow: 
        -2px -2px 0 #000, 
        2px -2px 0 #000, 
        -2px 2px 0 #000, 
        2px 2px 0 #000;
}

.location-address {
    color: #FFF;
    font-size: 1.6rem;
}
.location-phone {
    font-size: 1.4rem;
    margin: 8px 0;
    color: #FFF;
    font-family: "Roboto Condensed", sans-serif;
}
.location-hours {
    font-size: 1.1rem;
    margin: 8px 0;
    color: #EEE;
    font-family: "Roboto Condensed", sans-serif;
    content: "";  /* holds the content to put a border around it */
    display: block;
    width: 50%; /* half width */
    border: 2px solid #7b0404;
    margin: 0 auto; /* center it */
    border-radius: 8px; /* rounded corners */
}
/* --- Responsive Behavior --- */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
        height: auto;
    }
    .social-container {
        display: none;
    }
    .ST-header-id-img {
        margin-bottom: 1rem;
        padding-right: 0px;
    }
    .locations {
        justify-content: center;
        flex-direction: row;
        gap: 20px;
    }
} /* <-- this closing brace was missing */
@media (max-width: 480px) {
    .locations {
        flex-direction: column;
        align-items: center;
    }
    .location-link {
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
        max-width: 250px;
    }
}
/* Debugging Borders */
/*.social-container { border: 2px solid red; }*/
/*.ST-header-id-img { border: 2px solid green; }*/
/*.locations { border: 2px solid blue; }	*/
/* Debugging Borders */
/* *** END NAV SECTION CSS *** */
/* *** HERO SECTION CSS *** */
/* HERO SECTION */
.image-row {
    display: flex; /* side by side on desktop */
    gap: 20px; /* spacing between items */
    justify-content: center;
}
.image-row > div {
    flex: 1; /* each takes equal width */
    text-align: center; /* center everything inside */
}
.image-row img {
    width: 100%; /* responsive image */
    height: auto;
    display: block;
}
/* Labels */
.image-label-header {
    margin-top: 12px;
    font-family: "Trykker", serif;
    font-weight: 700;
    font-size: 2.5rem; /* adjust size for desktop */
    text-transform: uppercase;
    color: #fff;
}
.image-label-address {
    margin-top: 8px;
    font-size: 1rem;
    color: #fff;
}
/* --- Responsive Behavior --- */
@media (max-width: 768px) {
    .image-row {
        flex-direction: column; /* stack vertically */
        gap: 40px; /* spacing between stacked items */
    }
    .image-label-header {
        font-size: 2rem; /* scale down heading */
    }
}
/* --- END HERO SECTION CSS --- */
.directions-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #aeaeae;
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    border-color: black;
    border: 2px solid #000;
    font-weight: bold;
}

.directions-btn:hover { 
    background: #fff; 
    color: #000;
    border: 2px solid #FF3700;
}
/*** FOOTER SECTION CSS *** /
/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
}
/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: #333;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
    }
    .nav-links.active {
        display: flex;
    }
}