@charset "utf-8";

@font-face {
  font-family: 'Montserrat';
  src: url('../font/Montserrat-Regular.ttf') format('truetype');
  /* Path to the font file */
  font-weight: normal;
  font-style: normal;
}

:root {
    --main-color:#333;
    --header-accent: #F16326;
    --heading-accent: #0FF;
    --background-accent: #f7f7f7;
}

/* Reset some default margins and paddings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  /* Ensure the body fills the viewport */
}

body {
  font-family: 'Montserrat', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  background-color: white;
  color: var(--main-color);
}

hr {
  width:75%;
  margin-bottom: 20pt;
  height:0;
  border: 0;
  border-top: 1px solid var(--heading-accent);
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* Push header to top, and footer container to bottom */
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 20px;
  text-align: center;
}

.header img {
  max-width: 60%;
  /* Ensures the header image scales responsively */
  height: auto;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
  max-height: 50vh;
}

.logo img {
  width: auto;
  height: 100%;
  max-height: 453px;
  margin-bottom: -20pt;
}

/* Footer section that contains both COMING SOON and contact-info */
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.coming-soon {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 3rem;
}

.contact-info {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.2;
}

.contact-info a {
  color: var(--header-accent);
  /* Same orange color for the links */
  text-decoration: none;
  margin-left: 0.2rem;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-info span {
  color: var(--heading-accent)
  padding: 0 5px;
}

/* Announcements behave like cards: stacked on mobile, rows on larger screens */
.annoucements {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  gap: 20px;
}

.annoucement {
  background: var(--background-accent);
  padding: 15pt;
  margin: 0 10pt;
  border-width: 10pt;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.annoucement .report{
  text-align: center;
}

.annoucement .report img { 
  width: 140pt;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.annoucement .report .header { 
  color: var(--header-accent);
  font-size: 14pt;
  font-weight: bolder;
}

.annoucement .report .heading { 
  color: var(--heading-accent);
  padding: 5pt;
  font-size: 12pt;
  font-weight: bolder;
}

.annoucement .report .body { 
  font-size: 10pt;
}
.annoucement .report .result { 
  font-size: 8pt;
  text-align: center;
}
.annoucement .report input { 
  width: 200pt;
  margin: 2pt;
  padding: 2pt;
}

@media (min-width: 769px) {
  .annoucements {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .annoucements .annoucement {
    flex: 1 1 420px;
    max-width: 560px;
    flex-direction: column; /* keep vertical layout on wide screens */
    align-items: stretch;
    gap: 5pt;
  }
  
  .annoucement .report
  {
    text-align: left;
  }
  
  .annoucement .report img { 
    float: left;
    margin-left: -15pt;
  }
}

/* Cards container: mobile-first (stacked), rows on larger screens */
.cards {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

/* Make cards flexible on wider viewports */
@media (min-width: 769px) {
  .cards {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10pt;
  }

  .cards .content-card {
    flex: 1 1 280px;
    max-width: 360px;
  }
}

.content-card {
  padding: 15pt;
  background: var(--background-accent);
  border-width: 10pt;
  margin: 10pt;
}

.content-card p.header {
  font-size: 2rem;
  color: var(--header-accent);
  margin-top: 20pt;
  margin-bottom: 20pt;
}

.content-card p.body {
  text-align: left;
  font-size: 10pt;
}

.content-card img {
  width: 50pt;
  margin: 25pt;
}

.linkedin {
  position: static;
  /* Remove absolute positioning */
  margin-top: 25pt;
  /* Add some margin to separate it from other elements */
  text-align: center;
  /* Center the logo */
}

.linkedin img {
  width: 35px;
  /* Slightly smaller icon for mobile */
}

.linkedin img:hover {
  opacity: 0.8;
  /* Hover effect */
}

/* Media query for mobile screens */
@media (max-width: 768px) {
  .logo img {
    width: 75%;
    max-width: 300px;
    height: auto;
  }

  .footer {
    align-items: center;
    /* Keep everything centered */
  }
}