@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,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');

:root {
    --brand-orange: #e69d52;
    --brand-green: #2d7a4d;
    --ring-color: #2d7a4d1f;
}

body{
    font-family: Poppins, sans-serif;
}

.custom-title {
    color: var(--brand-orange);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
}

.btn-custom {
    background-color: var(--brand-green);
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: #1a4d30;
    transform: translateY(-3px);
}

.ring-custom {
    border: 10px solid var(--ring-color);
    pointer-events: none;
}

.ring-1 { 
    width: 250px; 
    height: 250px; 
    bottom: -50px; 
    left: -50px; 
    animation: float-bl 15s infinite ease-in-out; 
    z-index: 4; 
}

.ring-2 { 
    width: 350px; 
    height: 350px; 
    top: -100px; 
    right: 5%; 
    animation: float-tr 18s infinite ease-in-out; 
    border-width: 15px; 
    z-index: 4; 
}

.ring-3 { 
    width: 150px; 
    height: 150px; 
    bottom: 10%; 
    right: 40%; 
    animation: float-bc 12s infinite ease-in-out; 
    z-index: 4; 
}

@keyframes float-bl { 
    0%, 100% { 
        transform: translate(0, 0) scale(1); 
    } 

    50% { 
        transform: translate(40px, -30px) scale(1.05); 
    } 
}

@keyframes float-tr { 
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg);
        } 
        
        50% { 
        transform: translate(-50px, 40px) rotate(15deg); 
    } 
}

@keyframes float-bc { 
    0%, 100% { 
        transform: translate(0, 0); 
    } 
    
    50% { 
        transform: translate(-20px, -50px); 
    } 
}

.hero-sub-img {
    bottom: 20%;
    right: 12%;
    width: 500px;
    height: 500px;
    background: url('/assets/gba-hero-img.png') center/cover;
    z-index: 2;
}

@media (width < 991px) {
    .hero-sub-img { 
        display: none; 
    }

    .hero-section { 
        text-align: center; 
    }

    .ring-2 { 
        right: -50px; 
    }
}

.bg-brand-green {
    background-color: var(--brand-green);
}

.bg-icon {
    position: absolute;
    color: #ffffff14;
    z-index: 1;
    pointer-events: none;
}

.icon-book-top { 
    top: -20px; 
    right: 5%; 
    font-size: 10rem; 
    transform: rotate(15deg); 
}

.icon-book-bottom { 
    bottom: -40px; 
    right: 15%; 
    font-size: 14rem; 
    transform: rotate(-25deg); 
}

.icon-star { 
    top: 25%; 
    right: 28%; 
    font-size: 4rem; 
    transform: rotate(-10deg); 
}

.icon-moon { 
    bottom: 40%; 
    right: 2%; 
    font-size: 6rem; 
    transform: rotate(60deg); 
}

.icon-ring { 
    top: 45%; 
    right: 12%; 
    width: 30px; 
    height: 30px; 
    border: 4px solid #ffffff14; 
}

.glow-orange {
    background-color: var(--brand-orange);
    filter: blur(120px);
    opacity: 0.25;
    width: 400px;
    height: 400px;
}

.glow-green {
    background-color: var(--brand-green);
    filter: blur(120px);
    opacity: 0.25;
    width: 400px;
    height: 400px;
}

.side-ring {
    border: 30px solid #2d7a4d66;
    width: 500px;
    height: 500px;
    margin-right: -250px;
}

.text-dark-blue {
    color: #0d1b2a;
}

.bg-who-should-take {
    background-image: linear-gradient(#2d7a4de0, #2d7a4de0), url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.custom-list {
    padding-left: 1.25rem;
}

.custom-list li {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.gba-logo{
    width: 320px;
}