* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    height: 100vh;
    background-image: url('../images/main-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dark overlay */
.overlay {
    height: 100vh;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.content {
    max-width: 700px;
    padding: 20px;
}

.content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.links a {
    text-decoration: none;
    padding: 15px 30px;
    border: 2px solid #fff;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
    min-width: 160px;
}

.links a:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-3px);
}

@media (max-width: 600px) {
    .content h1 {
        font-size: 2.2rem;
    }

    .content p {
        font-size: 1rem;
    }
}

/* WhatsApp Order Section */
.whatsapp-section{
    margin-top: 28px;
    padding: 0 0 20px;
}

.whatsapp-box{
    max-width: 1050px;
    margin: 0 auto;
    padding: 18px 20px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 10px 26px rgba(0,0,0,0.06);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.whatsapp-left{
    display: flex;
    align-items: center;
    gap: 14px;
}

.whatsapp-icon{
    width: 52px;
    height: 52px;
}

.whatsapp-text h3{
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 2px;
    color: #111827;
}

.whatsapp-text p{
    margin: 0;
    color: #4b5563;
}

.whatsapp-text .phone{
    font-weight: 700;
    margin-top: 2px;
}

.whatsapp-btn{
    text-decoration: none;
    background: #25D366;
    color: #fff;
    font-weight: 800;
    padding: 12px 18px;
    border-radius: 999px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.whatsapp-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(37,211,102,0.35);
}

/* Mobile */
@media (max-width: 600px){
    .whatsapp-box{
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Subtle WhatsApp top bar */
.whatsapp-top{
    position: relative;
    z-index: 5;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 0.9rem;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 6px 12px;
}

.whatsapp-logo{
    width: 18px;
    height: 18px;
}

.whatsapp-top span{
    opacity: 0.85;
}

.whatsapp-link{
    color: #25D366;
    font-weight: 700;
    text-decoration: none;
}

.whatsapp-link:hover{
    text-decoration: underline;
}

