body, html {
    padding: 0;
    margin: 0;
}

header {
    width: 100%;
    height: auto;
    text-align: center;
  }
header h3 {
    width: 200px;
    margin: auto;
    background-color: #f13223;
    color: #ffffff;
}

#mainTopLogo {
    width: 200px;
    display: inline-block;
}
#topLogoTools {
    width: 25px;
    display: inline-block;
    vertical-align: middle;

}
#mainTitle {
    margin: -15px 0 0 0;
    color: #000;
    text-decoration: underline;
    font-size: 2rem;
}

/* --- Added styling for updated under construction section --- */

#underConstructionHolder {
    text-align: center;
}

#underConstructionMessage h2 {
    padding: 1rem;
    font-size: clamp(30px, 2.5vw, 50px);
    margin-bottom: 0.5rem;
    color: #333;
}

#underConstructionMessage p {
    padding: 1rem;    
    font-size: clamp(20px, 2.5vw, 24px);
    margin-bottom: 1.5rem;
    color: #555;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center; /* keeps entire block centered on the page */
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 250px; /* or whatever width suits your layout */
  justify-content: flex-start; /* ensures items line up from the left edge */
}

.contact-item img {
    width: 35px;
    height: 35px;
    vertical-align: middle;
}

.contact-item a {
    text-decoration: none;
    font-size: clamp(18px, 2.5vw, 18px);
    color: #000;
    vertical-align: middle;
}

#underConstructionImage img {
    width: 100%;
    max-width: 1400px;
    max-height: 500px;
}

#contactUsHolder {
    width: 100%;
    margin: auto;
    height: auto;
    text-align: center;
}

footer {
    width: 100%;
    height: auto;
    background: #000000;
    color: #ffffff;
    text-align: center;
    background-color: #b30000;
}

footer p {
    display: inline-block;
    vertical-align: middle;
}

footer a {
	text-decoration: none;
}

footer a img {
	width: 30px;
    height: 30px;
	border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
	cursor: pointer;
    transform: scale(1);
    transition: transform 0.3s ease;
}

footer a:hover img {
    transform: scale(1.05);
}
#footerLinks {
    display: inline-block;
}
/* Responsive Design */

@media (max-width: 344px) {
    #footerLinks {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    body, html {
        font-size: 14px;
    }

    header {
        width: 100%;
        height: auto;
        padding: 20px 0;
        text-align: center;
    }

    #mainTopLogo {
        width: 150px;
        margin: auto;
        display: block;
    }

    #mainTitle {
        margin: -10px 0 0 0;
        padding: 0;
        color: #000;
        text-decoration: underline;
    }

    #underConstructionMessage h2 {
        font-size: x-large;
    }

    #underConstructionMessage p {
        font-size: medium;
    }

    .contact-item a {
        font-size: medium;
    }
    
}
