html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    position: relative;
    font-family: 'Cairo', sans-serif;
    background-image: linear-gradient(#e7e5e339, #fcc05c) ;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5vh 0;
    box-sizing: border-box;
    min-height: 89vh;
}

.container {
    width: 90%;
    max-width: 400px;
    text-align: center;
    animation: containerEnter 2.5s forwards ease-out;
}


.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-logo {
    width: clamp(291px, 45vw, 200px);
    height: auto;
    border-radius: 15px;
    margin-bottom: 25px;
    animation: logoPop 2.5s forwards ease-out;
}

.content-column {
    width: 100%;
}

.content-column > * {
    opacity: 0;
    animation: fadeInContent 1s forwards ease-out 1.5s;
}


.social-circles-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.social-circle {
    width: 70px;
    height: 70px;
    background-color: white;

    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.social-circle i { font-size: 32px; color: #333; }
.social-item .label { margin-top: 8px; font-size: 14px; font-weight: 600; color: #555; }
.social-circle:hover { transform: translateY(-4px); box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); }

.download-links-container { display: flex; flex-direction: column; gap: 8px; }

.download-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    background-color: white;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.download-button:hover { transform: translateY(-3px); box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); }
.download-button i { font-size: 24px; margin-left: 10px; }
#app-store i{
    font-size: 30px;
}

#instagram i{
    font-size: 40px ;
}

#whatsapp i{
    font-size: 40px;
}

.contact-info{
    position: absolute;
    bottom: 67px;
    width: 100%;
    text-align: center;
    margin-top: 50px;
    padding-bottom: 10px;
    opacity: 0;
    animation: fadeInContent 1s forwards ease-out 1.5s;
}

.contact-info-homs{
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
    margin-top: 50px;
    padding-bottom: 10px;
    opacity: 0;
    animation: fadeInContent 1s forwards ease-out 1.5s;
}

.contact-info-homs h3{
    font-size: 12px;
    color: #333;
    margin-bottom: 7px;
}

.contact-info-homs pre{
    font-weight: 800;
    font-size: 12px;
    margin: 2px;
    direction: ltr;
}

.contact-info h3{
    font-size: 12px;
    color: #333;
    margin-bottom: 7px;
}

.contact-info pre{
    font-weight: 800;
    font-size: 12px;
    margin: 2px;
    direction: ltr;
}

@keyframes containerEnter {
    from { transform: translateY(calc(50vh - 50%)); }
    to { transform: translateY(-4vh); }
}
@keyframes logoPop {
    0% { transform: scale(0.6); opacity: 0; }
    60% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}
@keyframes fadeInContent {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (orientation: landscape) and (max-height: 550px) {
    .container {
        max-width: 95vw;
    }
    .content-wrapper {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 5vw;
    }
    .main-logo {
        flex-shrink: 0;
        margin-bottom: 0;
    }
    .content-column {
        text-align: center;
    }
    .social-circles-container, .download-links-container {
        animation: none;
        opacity: 1;
    }
    .contact-info{
        text-align: right;
        margin-right: 150px;
    }

    .contact-info-homs{
        text-align: right;
        margin-right: 150px;
    }
}
