/* Font setup */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 200;
  src: url('../fonts/plus-jakarta-sans-v11-latin-200.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/plus-jakarta-sans-v11-latin-300.woff2') format('woff2');
}
@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/plus-jakarta-sans-v11-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/plus-jakarta-sans-v11-latin-500.woff2') format('woff2');
}
@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/plus-jakarta-sans-v11-latin-600.woff2') format('woff2');
}

/* Base styling */
body {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
}

tellit-player {
    min-height: 100vh;
    background-color: #28225C;
}

/* Footer title */
footer h3 {
    color: #FFF37F;
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 300;
    margin: 20px 0;
}

/* Footer container */
.footer {
    background-color: #261f5a;
    color: #f2dc5d;
    text-align: center;
    padding: 10px 20px 150px;
}

/* Partners and contact sections */
.partners,
.contact {
    background-color: white;
    margin: 20px auto;
    padding: 30px 5%;
    max-width: 892px;
    width: 100%;
    box-sizing: border-box;
}

/* Partner logos */
.partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.partners img {
    max-height: 50px;
    max-width: 100px;
    height: auto;
    width: auto;
    margin: 10px;
}

/* Contact section */
.contact {
    color: #000;
    text-align: center;
    font-size: clamp(16px, 2vw, 24px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.contact p {
    margin: 0;
    font-size: 16px;
}

/* Contact links */
.contact a {
    color: #000;
    text-decoration: none;
    font-size: 24px;
    font-weight: 300;
}

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

/* Divider */
.divider {
    width: 60%;
    max-width: 300px;
    border-top: 1px solid #ccc;
    margin: 10px 0;
}

.contact a:first-of-type {
    margin-top: 20px;
}

.contact a:last-of-type {
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .partners,
    .contact {
        padding: 20px 5%;
    }
}


/* Responsive tweaks */
@media (max-width: 768px) {
    .partners img {
        max-width: 80px;
    }

    footer h3 {
        font-size: 20px;
    }

    .contact {
        font-size: 18px;
    }

    .contact a {
        font-size: 16px;
    }
}

