/* 
   Lemoncade Stylesheet 
   (Design loosely inspired by Stellar by HTML5 UP - html5up.net)
*/

* {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Capriola', sans-serif;
    color: #ffffff;
    background-color: #333333;
    min-height: 100vh;
}

#wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.custom-header {
    background-color: #333333;
    text-align: center;
    padding: 60px 20px 40px;
}

.custom-header h1 {
    font-family: 'Coiny', cursive;
    color: #F7ED55;
    font-size: 3.5rem;
    margin: 20px 0 10px;
    letter-spacing: 2px;
}

.custom-header p {
    font-size: 1.4rem;
    margin: 0;
    color: #ffffff;
}

.custom-main {
    background-color: #555555;
    padding: 40px 20px;
}

.custom-main h2 {
    font-family: 'Coiny', cursive;
    color: #F7ED55;
    text-align: center;
    font-size: 2.5rem;
    letter-spacing: 1px;
    margin: 0 0 40px 0;
}

.coming-soon-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    gap: 60px;
}

.image-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.image-container img {
    max-width: 100%;
    height: auto;
}

.text-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.description-text {
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.platforms-text {
    color: #F7ED55;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.custom-footer {
    background-color: #333333;
    text-align: center;
    padding: 40px 20px;
    font-size: 0.9rem;
    color: #888888;
}

.custom-footer .copyright {
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
}

.contact-email {
    margin: 0;
    text-align: center;
    width: 100%;
    display: block;
}

/* Email Obfuscation */
.protected-email {
    display: inline-block;
    cursor: default;
}

.protected-email::before {
    content: "\63\6f\6e\74\61\63\74";
}

.protected-email::after {
    content: "\40\6c\65\6d\6f\6e\63\61\64\65\2e\63\6f\6d";
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .coming-soon-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .image-container {
        justify-content: center;
    }
    
    .text-container {
        text-align: center;
    }
    
    .custom-header h1 {
        font-size: 2.5rem;
    }
    
    .custom-main h2 {
        font-size: 2rem;
    }
}
