@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
:root {
  --primary: #f5b301;       /* elegant gold */
  --primary-soft: #fff3cc;  /* soft gold */
  --dark: #1f2937;
  --muted: #6b7280;
  --bg-soft: #faf7f2;
}

body {
    background-color: rgba(250, 245, 233, 0.662);
    font-family: 'Inter', sans-serif;
  color: #1f2937; /* soft dark gray */
}
.container-fluid {
    background-color: rgba(246, 241, 241, 0.915);
    width: 100% !important;
}
.container-box {
    height: 530px;
    background-color: #804040;
}
.selector {
    height: fit-content;
    min-height:auto;
    padding-left: 10px;
    padding-bottom: 10px;
    border-radius: 16px;
  background: white;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.raw {
    width:100% !important;
}
.card {
    width: 100%;

    background: white;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    background-color: #ffffff;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 102px;
    font-size: 28px !important;
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
   
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

.card-clicked {
    background: var(--primary) !important;
    color: white !important;
}

.card-clicked > .text{
    color: white;
}

.card-clicked > .icon{
    color: #ffffff !important;
    filter: invert(100%);
}

.icon {
    width: 55px;
    height: 55px;
    margin-top: 5px;
}

.fullimage{
    width: 100%;
    height: 100%;
    padding-top: 10px;

    max-height: 430px;
    background: var(--bg-soft);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);

    object-fit: contain;   /* PENTING */
    object-position: center;

}

.text {
    color: var(--primary);/* Red color for text */
    font-size: 20px;
    font-weight: bold;
}

.text-custom-judul {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    /* text-align: center; */
}

.text-custom-body {
    
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 520px;
}

.container-btn {
  margin-top: 28px;
}

.container-btn .btn {
  background: linear-gradient(135deg, #f5b301, #facc15);
  color: #1f2937;
  border: none;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 999px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(245,179,1,0.35);
}

.container-btn .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(245,179,1,0.45);
}

@media only screen and (max-width: 576px) {
    /* put your CSS elements here */
    .selector {

        height:fit-content
    }
    .container-btn {
        padding-bottom: 50px;
}

    .card {
        width: 100%;
    
        background-color: #ffffff;
        border-radius: 15px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        height: 80px;
    
    }

    .text-custom-body {
        color: #978f8f; /* Red color for text */
        font-size: 1.2rem;
        text-align: justify;
        text-justify: inter-word;
    }

    .text-custom-judul{
        font-size: 26px;
    }
}