/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Reem Kufi Fun', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to top right, #3b1f05, #c86711);
}

.wrapper {
    width: 100%;
    max-width: 1200px;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-box {
    width: 90%;
    background-color: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 80vh;
}

/* Header Section */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
}

.logo-text {
    font-size: 30px;
    font-weight: bold;
}

.highlight {
    color: #FF8315;;
}

.order-button {
    color: #FF8315;;
    cursor: pointer;
    font-size: 18px;
}

/* Main Content Section */
.main-content {
    display: flex;
    justify-content: space-between;
    height: 100%;
}

/* Left Div */
.left-div {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-design {
    position: relative;
    width: 250px;
    height: 500px;
    background-color: black;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.top-right-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
}

.top-right-shape img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures the image fits nicely within the container */
}

.bottom-left-shape {
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 150px;
}

.bottom-left-shape img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.mobile-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-align: center;
}

.mobile-logo img {
    width: 80px;
    margin-bottom: 20px;
}

.powered-by-text {
    font-size: 20px;
    margin-bottom: 20px;
}

.qr-code img {
    width: 100px;
}

/* Right Div */
.right-div {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.branding img {
    width: 200px;
}

.branding h2 {
    font-size: 32px;
}

.branding p {
    margin-top: 15px;
    font-size: 18px;
    margin-bottom: 20px;
}

.description {
    color: #666;
}

.store-buttons a {
    margin-right: 10px;
}

.store-buttons img {
    width: 150px;
}

@media (max-width: 1600px){
    .content-box {
        height: 90vh;
    }
}


/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .main-content {
        flex-direction: column;
        align-items: center;
    }
    
    .right-div {
        padding-left: 0;
        text-align: center;
    }

}

@media (max-width: 768px) {
    .mobile-design {
        width: 200px;
        height: 350px;
    }
    
    .store-buttons img {
        width: 130px;
    }

    .top-right-shape {
        width: 100px;
    }
    .bottom-left-shape {
        width: 100px;
    }
    .qr-code img {
        width: 80px;
    }


}

@media (max-width: 480px) {
    .mobile-design {
        width: 150px;
        height: 250px;
    }
    
    .store-buttons img {
        width: 110px;
    }
    .top-right-shape {
        width: 60px;
    }
    .bottom-left-shape {
        width: 60px;
    }
    .mobile-logo img {
        width: 60px;
        margin-bottom:0px;
    }
    .powered-by-text {
        font-size: 18px;
    }
    .qr-code img {
        width: 60px;
    }
    .logo-text {
        font-size: 20px;
    }
    .branding img {
        width: 150px;
    }
    .branding h2 {
        font-size: 20px;
    }
    .branding p {
        margin-top: 10px;
        font-size: 12px;
        margin-bottom: 10px;
    }
    .branding img {
        width: 100px;
    }
    .powered-by-text {
        font-size: 15px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .content-box {
        width: 95%;
        background-color: white;
        border-radius: 20px;
        padding: 20px;
        box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 90vh;
    }
}
