@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* SECTIONS */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 60px 20px;
}

#logContent {
    margin-left: 225px;
}

#Content {
    text-align: center;
    padding: 20px;
}

.activityContent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 60px 20px;
}

.rankingDiv {
    display: flex;
    flex-direction: column;
    max-width: 700px;
}

.activityDiv {
    display: flex;
    flex-direction: column;
    max-width: 700px;
}

.activityImages {
    display: grid; 
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.welcome {
    display: block;
    text-align: center;
    padding: 50px 20px;
    margin-top: 80px;
}

.fullLogo {
    display: flex;
    align-items: center;
}

/* ITEMS */
nav {
    display: flex;
    justify-content: space-around;
    max-width: 600px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    margin: auto;
}

.navItem {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-family: Inter;

    padding: 49px 20px 49px 20px;
    
    &:hover {
        color: #2B792C;
        text-decoration: underline;
    }
}
    
/* TEXT */

h1 {
    font-family: Poppins;
    font-size: 35px;
}

p {
    font-family: Inter;
    font-size: 20px;
}

.slogan {
    font-family: Inter;
    font-size: 60px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.description {
    font-family: Inter;
    font-size: 20px;
}

.rankingDescription {
    font-family: Inter;
    font-size: 50px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin: 0;
    font-size: 20px;
    line-height: 1.4;
}

.slogan {
    font-family: Inter;
    font-size: 70px;
    margin-bottom: 10px;
}

.alreadyRegistered {
    margin-top: 15px;
    font-family: Inter;
    font-size: 16px;
}

.logIn {
    color: #2B792C;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-family: Inter;

    &:hover {
        color: #1F5E1F;
        text-decoration: underline;
    }
}

#premium {
    font-weight: bold;
    color: #266701;
}

span {
    color: #2B792C;
}

/* IMAGES */
.logo {
    width: 65px;
    height: 65px;
    border-radius: 5px;
}

.rankingImage {
  width: 420px;
  height: auto;
  border-radius: 12px;
  transition: 0.75s all;
    &:hover {
        transform: scale(1.15);
    }
}

.activityImage {
  width: 500px;
  height: auto;
  border-radius: 2px;
  transition: 0.75s all;
    &:hover {
        transform: scale(1.10);
    }
}

.reportImage {
  width: 420px;
  height: auto;
  border-radius: 12px;
  transition: 0.75s all;
    &:hover {
        transform: scale(1.15);
    }
}

/* BUTTONS */
.getStartedBtn {
    background-color:rgb(255, 255, 255);
    color:#2B792C;
    font-family: Inter;
    font-size: 20px;
    font-weight: 600;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 20px;
    transition: 0.2s all;

    &:hover {
        background-color: #2b792c49;
    }
}

/* FOOTER */
.footer {
    background-color: #ffffff;
    color: #333333;
    padding: 60px 20px 20px 20px;
    margin-top: 80px;
    font-family: Inter;
    border-top: 2px solid #2B792C;
}

.footerContainer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1500px;
    margin: 0 auto 40px auto;
}

.footerSection h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2B792C;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footerSection p {
    font-size: 14px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 10px;
}

.footerSection ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footerSection ul li {
    margin-bottom: 8px;
}

.footerSection a {
    color: #2B792C;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footerSection a:hover {
    color: #1F5E1F;
    text-decoration: underline;
}

.socialLinks {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social {
    display: inline-block;
    padding: 8px 15px;
    background-color: #f0f0f0;
    color: #2B792C;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #2B792C;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 500;
}

.social:hover {
    background-color: #2B792C;
    color: #ffffff;
    transform: translateY(-2px);
}

.footerBottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    color: #888888;
    font-size: 13px;
}