.page-container {
	background-color: var(--main-color);
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 6rem 0 2rem 0;
}

.company-title {
	font-weight: 100;
	font-size: 6rem;
	color: white;
	text-align: center;
	font-family: var(--header-font);
	line-height: 5rem;
}

.company-title .snack-bar {
    font-size: 5.5rem;
    color: lightgrey;
    font-family: var(--header-font);
}

.header-image-container {
    display: flex;
    justify-content: space-around;
    width: 90%;
    margin-top: 6rem;
    margin-bottom: 2rem;
    transform: translateY(-200px); /* Push it off-screen by 100% of the viewport height */
    opacity: 0;
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}

.header-image-container.slide-in {
    transform: translateY(0);
    opacity: 1;
}

.image-container {
    height: 400px;
    width: 30%;
    padding: 7.5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional: A subtle shadow to enhance the frame effect */
    border: 2px solid #ccc;
    overflow: hidden; /* Ensures any excess part of the image is hidden */
}

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

.information-container {
	margin-top: 2rem;
	background-color: white;
	display: flex;
	flex-direction: column;
	align-items: center;
	opacity: 0;
    transition: opacity 1s ease-in-out;
}

.information-container.fade-in {
    opacity: 1;
}

.paragraph-header {
	font-size: 4rem;
	font-weight: 400;
	margin-top: 2rem;
	margin-bottom: 2rem;
	font-family: var(--header-font);;
}

.location-information-container {
	display: flex;
	width: 80%;
	height: 125px;
	justify-content: space-around;
	margin-top: 3rem;
}

.address-container {
	width: 20%;
}

.information-paragraph {
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 2rem;
}

.hours-container {
	width: 30%;
}

.directions-container {
	width: 20%;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.directions-link {
	font-size: 1.2rem;
	font-weight: 500;
	color: black;
}

.order-container {
	width: 15%;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.order-button {
	background-color: var(--main-color);
	color: white;
	padding: 1rem 2rem;
	text-decoration: none;
	border-radius: 10px;
}