@import url('https://fonts.googleapis.com/css2?family=Allison&display=swap');

.allison-regular {
  font-family: "Allison", cursive;
  font-weight: 200;
  font-style: normal;
}

.time {
    width: 100%;
    min-height: 100vh;
    text-align: center;
    padding: 10rem 8rem;
    position: relative;
}

.time h2 {
    font-size: 60px;
    color: #000;
    font-family: "Allison", cursive;   
    text-align: center;
}

.time div:nth-of-type(1) {
    margin-top: 2rem;
}

.time div:nth-of-type(1) div h3 {
    font-family: var(--sacramento);
    font-size: var(--fontSize-heading-lg);
    font-weight: 400;
}

.time div:nth-of-type(1) div:nth-of-type(2){
    margin-top: 2rem;
}

.time a {
    padding: 0.5rem 1rem;
    color: #fff;
    font-size: 1rem;
    background-color: #000;
    margin: 2rem auto 1rem;
    border-radius: 20px;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.time a i {
    font-size: 1.2rem;
}

.time a + p + i {
    right: 8rem;
    top: 22rem;
}

.titlee {
    font-size: 60px;
    color: #000;
    font-family: "Allison", cursive;   
    text-align: center;
    padding-top: 50px;
}

.btn-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;           /* pastikan NOL */
    margin-top: 30px;
}

.btn-row .btn-min {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    margin: 0;       
}

.btn-row .btn-min + .btn-min {
    margin-left: 5px;  /* jarak super dekat 5px (bisa jadi 2px/0px) */
}

/* Default untuk HP (mobile-first) */
#time img {
    width: 100%;          /* Jangan full banget biar proporsional */
    max-width: 320px;    /* Batas maksimal di HP */
    height: auto;
    display: block;
    margin: 0 auto 1.5rem;
    object-fit: contain;
    padding-top: 60px;
}

.location-box {
    text-align: center;
    margin: 2rem auto;
    padding: 2rem 1rem;
    max-width: 900px;
    background: #fafafa;              /* mirip kertas */
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.location-title {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.location-address {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 1.5rem;
}

.maps iframe {
    width: 100%;
    height: 350px;
    border: 0;
    border-radius: 10px;
}

/* Mobile */
@media (max-width: 600px) {
    .maps iframe {
        height: 260px;
    }
}


/* Tablet ke atas */
@media (min-width: 768px) {
    #time img {
        width: 100%;
        max-width: 500px; 
        padding-top: 60px;  /* Di desktop gambarnya lebih besar */
    }
}

/* Desktop besar */
@media (min-width: 1200px) {
    #time img {
        padding-top: 60px;
        max-width: 550px;   /* Boleh makin gede */
    }
}
