/* Make the body and html elements take full height */
    html, body {
        height: 100%;
        margin: 0;
    }

    nav {
        background-color: white;
    }
    
    nav ul {
        width: 100%;
        height: 230px;
        list-style: none;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        font-size: 25px;
    }
    
    nav li {
        height: 50px;
    }
    
    nav a {
        height: 100%;
        padding: 0 20px;
        padding-right: 40px;
        text-decoration: none;
        display: flex;
        align-items: center;
        color: #000022;
    }
    
    nav a:hover {
        color: #d6d3d3;
        text-decoration: underline;
    }
    
    nav li:first-child {
        margin-right: auto;
    }
    
    .sidebar {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 250px;
        z-index: 999;
        background-color: white;
        box-shadow: -10px 0 10px rgb(0, 0, 0, 0.1);
        display: none;
        flex-direction: column;
        align-items: center; /* flex-start moves items to be left justified*/
        justify-content: flex-start;
    }
    
    .sidebar li {
        width: 100%;
    }
    
    .sidebar a {
        width: 100%;
    }
    
    img {
        width: 289px;
        height: 234px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .icon {
        padding-left: 5px;
        width: 35px;
        height: 35px;
    }
    
    .menu-button {
        display: none;
    }
    
    @media(max-width: 1360px) {
        .hideOnMobile {
            display: none;
        }
        .menu-button {
            display: block;
        }
    }
    
    @media(max-width: 500px) {
        .sidebar {
            width: 100%;
        }
        .hideOnMobileLogo {
            display: none;
        }
    }

/* Carousel */
    .carousel {
        width: 1314px;
        height: 767px;
        max-width: 100%;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
    }
    
    .carousel img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .crousel > ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .slide {
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: 1.5s ease-in-out;
        transition-delay: 1.5ms;
    }
    
    .slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover; /* maybe remove this. it makes the image full screen or a least fills the entire div. we could also try setting the aspect ration to 16 / 9*/
        object-position: center;
    }
    
    .slide[data-active] {
        opacity: 1;
        z-index: 1;
        transition-delay: 0ms;
    }
    
    .carousel-button {
        position: absolute;
        background: none;
        border: none;
        font-size: 2.5rem;
        top: 50%;
        z-index: 2;
        transform: translateY(-50%);
        color: #000022;
        opacity: 75%;
        cursor: pointer;
        border-radius: .25rem;
        padding: 0 .5rem;
    }
    
    .carousel-button:hover, .carousel-button:focus {
        color: #d6d3d3;
    }
    
    .carousel-button.prev {
        left: 1rem;
    }
    
    .carousel-button.next {
        right: 1rem;
    }


/* Background below the navbar */
    body {
        background-color: #F5F5F5;
        margin-top: -20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        font-family: 'Economica', sans-serif;
        font-size: 18px;
    }

    .main-content {
        padding: 20px;
        flex: 1;
        background-color: #F5F5F5;
        padding-bottom: 97px;
    }

      
/* Body Text */
    h1 {
        color: #000022;
        text-align: center;
        font-size: 65px;
        font-weight: 900;
        line-height: 57.60px;
        word-wrap: break-word;
        font-family: 'Federo', sans-serif;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    
/* Contact container styling */
.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #f5f5f5;
    margin: 20px 0;
}

/* Phone and email styling */
.phone, .email {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.phone-info {
    display: flex;
    flex-direction: column; /* Stacks elements vertically */
    align-items: center;
    justify-content: center; /* Centers content within the container */
    gap: 5px; /* Adds space between phone number and label */
}

.tel {
    font-size: 22px;
    font-weight: bold;
    color: #000022;
    text-decoration: none;
    padding-right: 40px;
    position: relative;
}

/* ICE-BULB label styling */
.ice-label {
    font-size: 20px;
    color: #000022;
    margin-top: -5px; /* Adds additional spacing if needed */
    margin-left: 8px;
}

.number {
    font-size: 18px;
    position: absolute;
    top: 0;
    right: 0;
}

.tel:hover {
    color: #d6d3d3;
    text-decoration: underline;
}

.email {
    font-size: 20px;
}

.email a {
    color: #000022;
    text-decoration: none;
    text-align: center;
}

.email a:hover {
    color: #d6d3d3;
    text-decoration: underline;
}

/* Address container */
.addresses {
    display: flex;
    justify-content: center;
    gap: 40px; /* Spacing between headquarters and retail */
    width: 100%;
    max-width: 800px;
    align-items: flex-end;
}

/* Address block styling */
.headquarters, .retail {
    text-align: center;
    flex: 1;
}

.headquarters p, .retail p {
    font-size: 20px;
}

.addresses p {
    margin: 4px 0; /* Reduced space for clean layout */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .addresses {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}









       

.footer {
    padding: 40px 0;
    background-color: white;
    margin: 0;
}

p {
    margin-top: 15px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 30px;
    font-weight: 900;
}

.footer .social {
    text-align: center;
    padding-bottom: 25px;
    color: #000022;
}

.footer .social a {
    font-size: 35px;
    color: inherit;
    line-height: 39px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    margin: 0 8px;
    margin-bottom: 20px;
}

.footer .social a:hover {
    color: #d6d3d3;
}


.footer ul {
    list-style: none;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: center;
}

.footer ul li a {
    color: inherit;
    text-decoration: none;
}

.footer ul li {
    display: inline-block;
    padding: 0 15px;
}

.footer ul li a:hover {
    color: #d6d3d3;
    text-decoration: underline;
}

.footer .copyright {
    margin-top: 15px;
    text-align: center;
    font-size: 25px;
    opacity: 50%;
}

a.contact {
    margin: 0;
}

.footer .social {
    text-align: center; /* Centers all child elements horizontally */
    padding-bottom: 25px;
    color: #000022;
}

.footer .social a,
.footer .social button {
    font-size: 35px;
    color: inherit;
    line-height: 39px;
    display: inline-block;
    text-align: center;
    margin: 0 8px; /* Spacing between each item */
    vertical-align: middle; /* Aligns icons and button */
}

.footer .social button {
    color: #d6d3d3;
}

button {
    background-color: #000022;
    padding: 6px 20px;
    color: #d6d3d3;
    cursor: pointer;
    transition: 0.4%;
    font-family: 'Economica', sans-serif;
    font-weight: bold;
    font-size: 20px;
    display: inline-block;
    vertical-align: middle;
    border: none;
}

.footer .social button:hover {
    background-color: #d6d3d3;
    color: #000022;
    text-decoration: underline;
    border: none;
}


/* Fonts */
/* Economica */
    .economica-regular {
        font-family: "Economica", sans-serif;
        font-weight: 400;
        font-style: normal;
    }

    .economica-bold {
        font-family: "Economica", sans-serif;
        font-weight: 700;
        font-style: normal;
    }

    .economica-regular-italic {
        font-family: "Economica", sans-serif;
        font-weight: 400;
        font-style: italic;
    }

    .economica-bold-italic {
        font-family: "Economica", sans-serif;
        font-weight: 700;
        font-style: italic;
    }

/* Federo */
    .federo-regular {
        font-family: "Federo", sans-serif;
        font-weight: 400;
        font-style: normal;
    }