@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');

@font-face {
  font-family: 'TT Trailers';
  src: url('../TT Trailers Trial Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Redesigned Footer */
.swb-footer {
    padding: 100px 0 40px;
    background-color: #101820;
    color: #fff;
    border-top: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}
.swb-footer .container {
    margin-left: 5% !important; /* Forces it to the left side of the screen */
    margin-right: auto !important;
    max-width: none !important;
    width: 90% !important;
}
.swb-socials {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}
.swb-social-btn {
    width: 50px; height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    transition: border-color 0.3s, color 0.3s;
}
.swb-social-btn:hover {
    border-color: #c4d600;
    color: #c4d600;
}
.swb-footer-huge-text {
    font-family: 'TT Trailers', 'Inter', sans-serif;
    font-size: clamp(60px, 12vw, 180px);
    font-weight: 900;
    line-height: 0.85;
    text-transform: uppercase;
    margin-bottom: 80px;
    color: #fff;
}
.swb-footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}
@media(max-width: 768px) {
    .swb-footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
.swb-footer-nav {
    display: flex;
    gap: 80px;
    margin-bottom: 60px;
    padding-top: 16px;
}

.swb-footer-nav__col {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.swb-footer-nav__col a {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.25s ease;
}

.swb-footer-nav__col a:hover {
    color: #fff;
}

@media (max-width: 600px) {
    .swb-footer-nav {
        gap: 40px;
    }
}
