:root {
    --g-canafe: #1b746c;
    --g-canafe-dark: #095049;
    --g-canafe-light: #1a7b73;
    --g-canafe-trans: #03423d9a;
    --g-canafe-soft: #e6f1f0;
}

html, body {
    height: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #fff 0%, #eaf5f4 60%, #03423d 100%);
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-bottom: 120px; /* beri ruang untuk footer fixed */
}

.logo-container {
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
}
.logo-img {
    width: 180px;
    height: 100px;
    object-fit: contain;
    background: transparent;
    margin-bottom: 10px;
}
.slider-card {
    max-width: 400px;
    margin: 0 auto;
}
.carousel-item {
    padding: 10px 0;
}
.btn-link {
    width: 100%;
    font-size: 1rem;
    padding: 13px 15px;
    font-weight: bold;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    border: 3px solid var(--g-canafe-dark);
    border-radius: 100px;
    color: #ffffff;
    background: var(--g-canafe);
    box-shadow: 0 10px 0px var(--g-canafe-dark);
    transition: all 0.3s;
    text-decoration: none;
}

.btn-linkt.btn-outline-success,
.btn-linkt.btn-outline-primary,
.btn-linkt.btn-outline-danger {
    background: var(--g-canafe);
    color: #fff;
    border: none;
}

.btn-link:hover {
    background: var(--g-canafe-light);
    color: #fff;
    transform: translateY(-4px);
    border: 3px solid var(--g-canafe-dark);
    box-shadow: 0 10px 0px var(--g-canafe-dark);
}

footer {
    margin-top: auto;
    font-size: 0.9rem;
}
.stylingfooter{
    padding: 10px 30px;
    border-radius: 100px;
    display: inline-block;
    color: white !important;
    background: #ffffff1e;
}

footer a{
    color: white !important;
    font-weight: bold;
}

.slide-vertical {
    animation: slideUpDown 1.2s ease-in-out infinite alternate;
}

@keyframes slideUpDown {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(10px);
    }
}

#promoCarousel .carousel-item .card {
    border: 2px solid #198754; /* warna btn-outline-success (GoFood) */
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(25, 135, 84, 0.08);
    transition: border-color 0.3s;
}

#promoCarousel .carousel-item:nth-child(2) .card {
    border-color: #0d6efd; /* warna btn-outline-primary (Grab Food) */
    box-shadow: 0 2px 12px rgba(13, 110, 253, 0.08);
}

footer.text-center {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    z-index: 100;
    padding: 2rem 0;
}
.ig-canafe-icon {
    color: var(--g-canafe); /* hijau canafe */
    transition: all 1.2s;
}
.ig-canafe-icon:hover,
.ig-canafe-icon:focus {
    transform: translateY(-4px);
    color: var(--g-canafe-light); /* hijau muda canafe */
}
.btn-icon-start {
    position: absolute;
    left: 18px;
    width: 24px;
    height: 24px;
    object-fit: contain;
    pointer-events: none;
}
.btn-with-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding-left: 48px !important;
}

.btn-with-icon .btn-icon-start {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    object-fit: contain;
    pointer-events: none;
}

.btn-with-icon .btn-text-center {
    flex: 1 1 0%;
    width: 100%;
    text-align: center;
    display: block;
    font-weight: 500;
    margin: 0;
}
.btn-icon-abs {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    min-height: 48px;
    line-height: 1.5;
    overflow: hidden;
}

.btn-icon-abs-img {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    object-fit: contain;
    pointer-events: none;
    z-index: 2;
}