
/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : Oct 23, 2024, 11:54:45 AM
    Author     : Oluwatoyin
*/

@media only screen and (max-width: 600px) {
    #navbutton {
        font-size: 15px;
        border: none;
    } 
}
.token-section {
  width: 100%;
  padding: 40px 20px;
  text-align: center;
}

.token-section {
  width: 100%;
  padding: 40px 20px;
  text-align: center;
}

.token-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.token-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 25px;
  border-radius: 12px;
  background: #f8f9fb;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  margin: 8px;
}

.token-card img {
  width: 40px;
  height: 40px;
}

.token-card span {
  font-size: 1.2rem;
  font-weight: 600;
}

/* Mobile */
@media (max-width: 600px) {
  .token-card {
    padding: 12px 18px;
  }

  .token-card span {
    font-size: 1rem;
  }
}

.partners-section {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
}

.partners-section h2 {
    font-size: 26px;
    margin-bottom: 25px;
    color: #222;
}

.partners-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.partner-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px 20px;
    width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
}

.partner-card img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 10px;
}

.partner-card span {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Mobile optimization */
@media (max-width: 600px) {
    .partner-card {
        width: 120px;
        padding: 12px;
    }

    .partners-section h2 {
        font-size: 22px;
    }
}

.accepting-section {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
}

.accepting-section h2 {
    font-size: 26px;
    margin-bottom: 25px;
    color: #222;
}

.accepting-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.accept-card {
    background: #fff;
    border-radius: 14px;
    padding: 18px 30px;
    width: 160px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.accept-card:hover {
    transform: translateY(-5px);
}

.accept-card img {
    max-width: 100%;
    max-height: 45px;
    object-fit: contain;
}

/* Mobile */
@media (max-width: 600px) {
    .accept-card {
        width: 140px;
        height: 80px;
        padding: 15px 20px;
    }

    .accepting-section h2 {
        font-size: 22px;
    }
}