* {
    box-sizing: border-box;
    /* border: 1px solid red; */
}


body {
    margin: 0;
    padding: 0;
    background-color: #FFF4C4;  
}

/* Hero Styling */
.hero {
    background-color: #FAD1E2; /* Change the color later*/
    color: #F76AA7; /* Change the color later*/
    height: max-content;
    text-align: left;
    padding: 5rem;
}

.hero-container {
    display: flex;
    flex-direction: row-reverse;
    padding: 20px;
    justify-content: space-around;
    flex-wrap: wrap;
}

.hero-text {
    display: flex;
    flex-direction: column;
    width: 50%;
    padding: auto;
    align-items: left;
    flex-wrap: wrap;
}

.hero-text h1 {
    font-size: 4rem;
    padding: 10px 0;
    font-family: "Poppins", serif;
    font-weight: 700;
}

.hero-text h2 {
    font-size: 2rem;
    font-family: "Poppins", serif;
    font-weight: 600;
}

.hero-text p {
    font-size: 1rem;
    font-family: "Poppins", serif;
    font-weight: 400;
}

.hero-image {
    display: flex;
    flex-direction: column;
    width: 30%;
    padding: auto;
    align-items: center;
}

.hero-image img {
    width: 100%;
    height: 100%;
    border-radius: 25px;
}

.hero-button-1 {
    background-color: white;  /* Change the color later*/
    border: none;
    border-radius: 25px;
    padding: 10px;
    margin: 10px 0;
    width: 40%;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.hero-button-1:hover {
    transform: scale(0.95);
    background-color: #FFF4C4;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.hero-button-2 {
    background-color: #f665a4; /* Change the color later*/
    border: none;
    border-radius: 25px;
    padding: 10px;
    margin: 10px 0;
    width: 40%;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.hero-button-2:hover {
    transform: scale(0.95);
    background-color: #f93f8f; /* Change the color later*/
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.hero a {
    font-size: 1.25rem;
    font-family: "Poppins", serif;
    font-weight: 400;
    text-decoration: none;
    color: black; /* Change the color later*/
}

/* Promotion Styling */
.association {
    background: linear-gradient(to bottom, #FAD1E2, #FFF4C4);
    /* background-color: #FFF4C4; /* Change the color later*/
    color: #F76AA7; /* Change the color later*/
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
}
.association h1 {
    font-size: 2.5rem;
    padding: 10px;
    font-family: "Poppins", sans-serif; /* Change the font later*/
    font-weight: 700;
}
.association-container {
    display: flex;
    flex-direction: row;
    padding: 20px;
    justify-content: space-around;
    flex-wrap: wrap;
}
.association-item {
    position: relative;
    background-color: blanchedalmond;
    color: black; /* Change the color later */
    display: flex;
    flex-direction: column;
    width: 30%;
    height: auto;
    align-items: center;
    margin: 25px 10px;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid #FFFFFF; /* Change the color later*/
}

.association-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 25px;
}
.association-content {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.6s ease;
    border-radius: 25px;
    padding: 20px;
}

.association-item:hover .association-content {
    opacity: 1; /* Makes the content visible */
}

.association-content > * {
    transform: translateY(25px);
    transition: transform 0.6s ease;
}

.association-content h2 {
    font-size: 24px;
    padding: 10px;
    font-family: "Poppins", sans-serif; /* Change the font later*/
    font-weight: 700;
    color: white; /* Change the color later*/
}

.association-content p {
    font-size: 18px;
    padding: 10px;
    font-family: "Poppins", sans-serif; /* Change the font later*/
    font-weight: 400;
    color: white; /* Change the color later*/
}

.association-button {
    background-color: white; /* Change the color later*/
    padding: 10px;
    border-radius: 25px;
    width: 40%;
    background-color: #FFF4C4;
}

.association-button:hover {
    background-color: #FFF4C4; /* Change the color later*/
    transition: background-color 0.3s ease;
}

.association a {
    font-size: 14px;
    font-family: "Poppins", sans-serif; /* Change the font later*/
    font-weight: 400;
    text-decoration: none;
    color: black; /* Change the color later*/
}