/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

/* Main Container */
#main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
#order-hero {
    background-color: #ffcc00;
    text-align: center;
    padding: 60px 20px;
    border-bottom: 4px solid #ff9900;
}

#order-hero h1 {
    font-size: 48px;
    color: #333;
    margin-bottom: 10px;
}

#order-hero p {
    font-size: 20px;
    color: #555;
}

/* Order Sections */
section {
    margin: 50px 0;
    text-align: center;
}

section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #333;
}

/* Order Containers */
.order-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    padding: 20px;
}

.order-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.order-details {
    flex: 1;
    padding-left: 20px;
}

.order-details p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

/* Buttons */
.btn {
    background-color: #333;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.whatsapp-btn {
    background-color: #25d366;
}

.phone-btn {
    background-color: #ffcc00;
    color: #333;
}

.btn:hover {
    background-color: #555;
}

/* Footer Section */
#footer-container {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
}

#footer-container p {
    margin-bottom: 10px;
    font-size: 16px;
}

#footer-container a {
    color: #ffcc00;
    text-decoration: none;
    margin: 0 10px;
}

#footer-container a:hover {
    color: #ff9900;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    border-radius: 50%;
    z-index: 1000;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.whatsapp-float img {
    width: 80%;
    height: 80%;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .order-container {
        flex-direction: column;
        align-items: center;
    }

    .order-details {
        padding: 20px 0;
    }
}
