@import url('https://fonts.googleapis.com/css2?family=Didact+Gothic&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Raleway", sans-serif;
}

header {
    position: sticky;
    top: 0;
    background-color: #76084e;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid #ffccf896;
    box-shadow: 0 3px 0px #0000008f;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
}

.logoLink {
    color: white;
    text-decoration: none;
}

.lowColor {
    color: #fbe5ff70;
}

.language-switcher {
    position: relative;
}

.language-switcher button {
    background-color: #ffffff00;
    color: #ffffffd4;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-style: wavy;
    text-underline-offset: 5px;
}

.language-switcher .dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #ffffff;
    min-width: 148px;
    box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 34%);
    z-index: 1;
    border-radius: 5px;
    padding: 5px 0;
    margin-top: 5px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.language-switcher .dropdown-content a {
    color: black;
    padding: 8px 16px;
    text-decoration: none;
    display: block;
}

.language-switcher .dropdown-content a:hover {
    background-color: #e5d8e7;
}

.language-switcher .dropdown-content.show {
    display: block;
}

main {
    text-align: center;
}

@media (max-width: 768px) {    
    .mainContent img {
        max-width: none;
        width: 100%;
    }
    .language-switcher {
        display: none;
    }
    header {
        justify-content: center;
    }
    .content-3 {
        height: auto !important;
        min-height: 300px;
        padding: 50px 0 60px 0;
    }
    
}

.content-1 {
    background: linear-gradient(to bottom, rgb(0 31 114 / 22%) 0%, rgb(99 20 169 / 0%) 50%), url(/images/BackG.webp) no-repeat center center / cover;
    height: calc(100vh - 53px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.content-1 h1 {
    font-size: 3em;
    margin-bottom: 10px;
    text-shadow: 0 1px 5px #000000b3;
}

.content-1 p {
    margin-bottom: 20px;
    font-size: 20px;
    text-shadow: 0 1px BLACK;
    color: #97ffb7;
}

.content-1 button {
    padding: 20px 30px;
    color: #650047;
    text-transform: uppercase;
    font-size: 1.5rem;
    background: #ddffd4;
    font-weight: 700;
    cursor: pointer;
    border-radius: 1rem;
    border: 2px solid #ffbbda;
    box-shadow: 0 2px 10px #0c0a02d4;
    margin-bottom: 60px;
}

.content-1 button:hover {
    box-shadow: 0 2px 10px #fbf0c454;
    background: none;
    color: #92ffa1;
}

.content-2 {
    background: url(/images/BackGSub.webp);
    background-size: cover;
    background-position-y: bottom;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.content-2 h1 {
    font-size: 3em;
    margin-top: 10px;
    text-shadow: 0 1px 5px #0000005e;
}

.content-2 p {
    margin-bottom: 20px;
    font-size: 20px;
    text-shadow: 0 1px BLACK;
    color: #ffffaa;
}

.content-3 {
    background: linear-gradient(to bottom, rgb(0 31 114 / 22%) 0%, rgb(99 20 169 / 0%) 50%), url(/images/BackG.webp) no-repeat center bottom / cover;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.content-3 h1 {
    font-size: 3em;
    margin-bottom: 10px;
    text-shadow: 0 1px 5px #000000b3;
}

.content-3 p {
    margin-bottom: 20px;
    font-size: 20px;
    text-shadow: 0 1px BLACK;
    color: #ffffaa;
    max-width: 90%;
}

.content-3 button {
    padding: 20px 30px;
    color: #2f0723;
    text-transform: uppercase;
    font-size: 1.5rem;
    background: #ffffec;
    font-weight: 700;
    cursor: pointer;
    border-radius: 2rem;
    border: 2px solid #ffcee4;
    box-shadow: 0 2px 10px #0c0a02d4;
    margin-bottom: 10px;
}

.content-3 button:hover {
    box-shadow: 0 2px 10px #fbf0c454;
    background: none;
    color: wheat;
}

.mainContent {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
    text-align: justify;
}

.mainContent a{
    font-weight: bold;
    color: #e22b3d;
}

.mainContent a:hover{
    text-decoration: none;
}

.mainContent p {
    font-size: 19px;
    letter-spacing: 0.5px;
    line-height: 25px;
    margin: 15px 0;
}

.mainContent h2 {
    color: #850451;
    font-size: 25px;
    font-weight: 600;
    margin-top: 20px;
    text-align: center;
}

.mainContent h3 {
    color: #3f0427;
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
    text-align: center;
}

.mainContent img {
    max-width: 500px;
    margin: auto;
    display: flex;
    border-radius: 1rem 3rem;
}

footer {
    background-color: #320f25;
    color: white;
    text-align: center;
    padding: 10px 0 30px;
    border-top: 5px solid #c0318c;
}

footer a {
    color: #ded398;
    text-decoration: none;
}

footer a:hover {
    color: #ffe141;
    text-decoration: underline;
}

.footHead  {
    font-size: 20px;
    display: block;
    margin: 25px 0 15px;
    color: #d9dde2;
    font-weight: 500;
}

.formDiv {
    border-radius: 5px;
    background-color: #a8a1ab26;
    padding: 20px;
    margin-bottom: 20px;
    text-align: left;
}

.formDiv input[type=text], select, textarea {
    width: 100%; /* Full width */
    padding: 12px; /* Some padding */ 
    border: 1px solid #ccc; /* Gray border */
    border-radius: 4px; /* Rounded borders */
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    margin-top: 6px; /* Add a top margin */
    margin-bottom: 16px; /* Bottom margin */
    resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}
  
.formDiv input[type=submit] {
    background-color: #4d3753;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
  
.formDiv input[type=submit]:hover {
    background-color: #6b4077;
}

.footerOtherApps {
    margin-bottom: 15px;
    color: #ffffffa1;
    text-transform: uppercase;
    font-weight: 600;
}

.onlyGirlsChat {
    height: 50px;
    margin: auto;
    display: flex;
    background: #ba2d65;
    justify-content: center;
    align-items: stretch;
    flex-direction: column;
    max-width: 400px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 40px;
}

.onlyGirlsChatA {
    color: wheat;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
}

.onlyGBG {
    display: grid;
    background-color: #302c2e;
}

.frameClass {
    width: 100%;
    height: calc(100% - 50px);
    border: 0;
}