/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* Hero Section */
#hero {
    background-image: url('coffee-bg.png');
    background-size: contain; /* tampilkan seluruh gambar */
    background-repeat: no-repeat; /* mencegah pengulangan */
    background-position: center center; /* posisi di tengah */
    background-color: #000; /* warna latar belakang jika gambar tidak menutupi seluruh area */
    
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


#hero h1 {
    font-size: 3.5rem;
    color: #fff;
    font-weight: bold;
}

#hero p {
    font-size: 1.5rem;
    color: #ddd;
}

/* Products Section */
.card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

/* Contact Section */
form .form-control {
    border-radius: 8px;
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
    padding: 20px 0;
}

#whatsapp-button {
    position: fixed;
    bottom: 20px; /* Distance from the bottom */
    right: 20px; /* Distance from the right */
    z-index: 1000; /* Ensure it stays on top of other elements */
    border-radius: 50%; /* Optional: gives a circular button */
    background-color: #25D366; /* Optional: background color for better visibility */
    padding: 10px; /* Padding around the icon */
    box-shadow: 0 2px 5px rgba(0,0,0,0.3); /* Optional: adds shadow for depth */
}

#whatsapp-button img {
    width: 40px; /* Adjust size to make it smaller */
    height: 40px; /* Keep aspect ratio */
}

