body {
    margin: 0;
    background-color: #fffaea;
    font-family: Arial, sans-serif;
}

/* Back Button */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.back-btn:hover {
    background: #e8e8e8;
    border-color: #bbb;
}

/* Header */
.header {
    width: 100%;
    background-color: #0F8A5F;
    color: white;
    padding: 15px 25px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .brand {
    font-size: 25px;
    font-weight: bold;
}

.header .sign-in {
    padding: 8px 16px;
    background-color: white;
    color:#0c6b48;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
}

/* foto bg fullscreen */
.hero {
    width: 100%;
    height: 100vh;
    background-image: url('../img/dog_daycare_yeah.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    
}

/* teks di atas gambar */
.hero-text {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    max-width: 650px;
    padding: 20px;
}

.hero-text h1 {
    color: #ffffff;
    font-size: 45px;
    margin-bottom: 10px;
    text-shadow: 0 0px 8px rgb(0, 0, 0);
}

.hero-text p {
    font-size: 20px;
    line-height: 1.5;
    text-shadow: 0 0px 10px rgba(0, 0, 0);
    padding-bottom: 30px;
}

/* tombol titip */
.hero-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #0f8a5f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 0px 20px rgba(0, 0, 0);
    display: inline-block;
    transition: box-shadow 0.25s ease;
}

/* transisi button */
.hero-btn:hover {
    background-color: #0b734f;
    box-shadow: 0 0px 30px rgba(0, 0, 0);
}

/* FASILITAS */
.facility {
    padding: 70px 25px;
    background-color: #fffaea; 
    display: flex; 
    gap: 50px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Kolom Kiri: Galeri Foto */
.facility-gallery {
    flex: 1; 
    padding-right: 20px; 
}

.facility-gallery h2 {
    color: #0F8A5F;
    font-size: 30px;
    margin-bottom: 25px;
    border-left: 5px solid #0F8A5F; 
    padding-left: 10px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px;
}

.facility-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.facility-item:hover {
    transform: translateY(-5px); 
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.facility-photo {
    width: 100%;
    height: 150px; 
    background-size: cover;
    background-position: center;
}

.facility-item p {
    text-align: center;
    color: #333;
    font-weight: bold;
    padding: 10px 5px;
    margin: 0;
    font-size: 14px;
}

/* Kolom kanan: Deskripsi sama tombol */
.place-order {
    flex: 1; 
    padding-top: 50px; 
}

.place-order h2 {
    color: #333;
    font-size: 30px;
    margin-bottom: 15px;
}

.place-order p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* more facility */
.more-facility-btn {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #0f8a5f;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 15px;
    box-shadow: 0 4px 10px rgba(15, 138, 95, 0.4);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.more-facility-btn:hover {
    background-color: #0c6b48;
}

/* Media Query untuk tata letak mobile */
@media (max-width: 900px) {
    .facility {
        flex-direction: column; 
        gap: 30px;
    }

    .facility-gallery {
        padding-right: 0;
    }

    .place-order {
        padding-top: 0; 
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 500px) {
    .gallery-grid {
        grid-template-columns: 1fr; 
    }
}





/* BAGIAN LANGKAH PEMESANAN */
.how-to-order {
    background-color: #fffaea;
    padding: 70px 25px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.how-to-order h2 {
    color: #333;
    font-size: 30px;
    margin-bottom: 40px;
}

.order-steps-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
}

.step-item {
    flex: 1;
    background-color: white;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
}

.step-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px auto;
    background-size: 60px;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    border: 3px solid #0F8A5F;
}

.step-item h3 {
    color: #0F8A5F;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
}

.step-item p {
    color: #555;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 14px;
}

/* Tombol Link Paket Khusus */
.package-link-btn {
    display: inline-block;
    padding: 8px 15px;
    background-color: #ffffff;
    border: 2px solid #0c6b48;
    border-radius: 50px;
    color: #0c6b48;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.package-link-btn:hover {
    color: white;
    background-color: #0c6b48;
}

/* Tombol Titip Sekarang di tengah */
.order-btn {
    margin-top: 20px;
    padding: 8px 18px;
    background-color: #0F8A5F;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.5);
    display: inline-block;
    transition: box-shadow 0.25s ease;
}

/* transisi button */
.order-btn:hover {
    background-color: #0c6b48;
    box-shadow: 0 0px 15px rgba(0, 0, 0, 0.5);
}

/* Media Query untuk tata letak mobile */
@media (max-width: 768px) {
    .order-steps-container {
        flex-direction: column; 
    }
}



/* --- Footer --- */
.footer-info {
    background-color: #0F8A5F;
    color: white;
    padding-top: 30px;
}

.info-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px 25px;
    gap: 40px;
}

/* kontak 30% kiri */
.info-contact {
    flex: 0 0 30%;
}

/* about us 70% kanan */
.info-about-social {
    flex: 1;
}

.footer-info h3 {
    color: white;
    font-size: 22px;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-top: 10px;
    padding-bottom: 10px;
}

.info-contact p {
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Media Sosial Buttons */
.social-links {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.social-btn {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    color: white;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.social-btn.instagram {
    background-color: #E4405F; /* Instagram */
}

.social-btn.facebook {
    background-color: #3B5998; /* Facebook */
}

.social-btn.whatsapp {
    background-color: #25D366; /* WhatsApp */
}

.social-btn:hover {
    opacity: 0.8; /* Sedikit pudar saat dihover */
}

/* Copyright Bar */
.copyright {
    text-align: center;
    padding: 15px;
    background-color: #0c6b48; /* Warna hijau sedikit lebih gelap */
    font-size: 14px;
}


/* Media Query untuk tata letak mobile */
@media (max-width: 768px) {
    .info-container {
        flex-direction: column; /* Tumpuk kolom di layar kecil */
    }

    .info-contact {
        flex: 1; /* Biarkan mengambil lebar penuh */
    }
    
    .social-links {
        flex-wrap: wrap; /* Tombol media sosial akan turun jika terlalu banyak */
    }
}