/*
Theme Name: Gatotwin
Author: Gatotwin
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #7d2618;
    color: #fff;
}

.upper-section {
    background-color: #7d2618;
    padding-top: 10px;
}

.navbar-brand img {
    max-height: 50px;
}

.nav-link {
    color: #fff !important;
}

.nav-link:hover {
    color: #eeb830 !important;
}

.tada {
    animation: tada 1s infinite;
}

@keyframes tada {
    0% {
        transform: scale(1);
    }
    10%,
    20% {
        transform: scale(0.9) rotate(-3deg);
    }
    30%,
    50%,
    70%,
    90% {
        transform: scale(1.1) rotate(3deg);
    }
    40%,
    60%,
    80% {
        transform: scale(1.1) rotate(-3deg);
    }
    100% {
        transform: scale(1);
    }
}

.carousel-item img {
    border-radius: 10px;
}

.button-36 {
    background-image: linear-gradient(92.88deg, #eeb830 9.16%, #e42a2d 43.89%, #e42a2d 64.72%);
    border-radius: 8px;
    border-style: none;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    flex-shrink: 0;
    font-family: "Inter UI","SF Pro Display",-apple-system,system-ui,"Segoe UI",Roboto,Ubuntu,"Helvetica Neue",sans-serif;
    font-size: 16px;
    font-weight: 500;
    height: 4rem;
    padding: 0 1.6rem;
    text-align: center;
    text-shadow: rgba(0, 0, 0, 0.25) 0 3px 8px;
    transition: all .5s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    margin-bottom: 10px;
}

.button-36:hover {
    box-shadow: rgba(80, 63, 205, 0.5) 0 1px 30px;
    transition-duration: .1s;
}

@media (min-width: 768px) {
    .button-36 {
        padding: 0 2.6rem;
    }
}

.button-36-primary {
    background-image: linear-gradient(92.88deg, #eeb830 9.16%, #e42a2d 43.89%, #e42a2d 64.72%);
}

.button-36-secondary {
    background-image: linear-gradient(92.88deg, #7d2618 9.16%, #eeb830 43.89%, #eeb830 64.72%);
}

.pulse {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.bottom-section {
    background-color: #7d2618;
    padding: 20px 0;
}

.content {
    background-color: #7d2618;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.box {
    background-color: #7d2618;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.box img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.box h3 {
    color: #fff;
    margin-top: 10px;
    font-size: 1.1em;
}

.box p {
    color: #eeb830;
    font-size: 0.9em;
}

.footer {
    text-align: center;
    padding: 20px;
    color: #fff;
    margin-top: 20px;
}

.footer a {
    color: #eeb830;
    text-decoration: none;
}

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

/* Additional styles for specific elements */
.text-primary {
    color: #e42a2d !important;
}

.bg-primary {
    background-color: #e42a2d !important;
}

.text-secondary {
    color: #eeb830 !important;
}

.bg-secondary {
    background-color: #eeb830 !important;
}

.btn-primary {
    background-color: #e42a2d;
    border-color: #e42a2d;
}

.btn-primary:hover {
    background-color: #7d2618;
    border-color: #7d2618;
}

.btn-secondary {
    background-color: #eeb830;
    border-color: #eeb830;
}

.btn-secondary:hover {
    background-color: #e42a2d;
    border-color: #e42a2d;
}

.form-control:focus {
    border-color: #eeb830;
    box-shadow: 0 0 0 0.25rem rgba(238, 184, 48, 0.25);
}

.modal-header {
    background-color: #7d2618;
    color: #fff;
}

.modal-footer {
    background-color: #7d2618;
    color: #fff;
}

.progress-bar {
    background-color: #e42a2d;
}

.alert-primary {
    color: #7d2618;
    background-color: #eeb830;
    border-color: #eeb830;
}

.alert-secondary {
    color: #7d2618;
    background-color: #eeb830;
    border-color: #eeb830;
}

.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

.alert-warning {
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5;
}

.alert-info {
    color: #055160;
    background-color: #cff4fc;
    border-color: #b6effb;
}

.alert-light {
    color: #636468;
    background-color: #fefefe;
    border-color: #fdfdfe;
}

.alert-dark {
    color: #141619;
    background-color: #d3d3d4;
    border-color: #bcbebf;
}