@charset "utf-8";

body {
    margin: 0;
    font-family: "Arial", sans-serif;
    background: #111;
    color: #fff;
}

header {
    text-align: center;
    padding: 40px;
    background: #222;
}

section {
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.gallery img {
    width: 100%;
}

.thumbs {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.thumb {
    flex: 0 0 24%;
    max-width: 24%;
    cursor: pointer;
    opacity: 0.7;
}

.thumb:hover {
    opacity: 1;
}

a {
    color: #00ffff;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

.frame {
    height: 100vh;
    background-image: url("../images/warframe_main.png");
    background-size: cover;
    background-position: center;
    position: relative;
}

.frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.frame-text {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #000;
    padding: 10px 0;
}

.nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}



#setpos {
    width: 100%;
    height: 500px;
}

.slide-area {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.slide.active {
    display: block;
}

.slide-description {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    position: relative;
    z-index: 1;
}

.slide-area2 {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.slide2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.slide.active2 {
    display: block;
}

.slide-description2 {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    position: relative;
    z-index: 1;
}

.slide-area3 {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.slide3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.slide.active3 {
    display: block;
}

.slide-description3 {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact {
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.form-item {
    margin-bottom: 20px;
}

input,
textarea {
    width: 100%;
    padding: 8px;
}

.form-buttons {
    display: flex;
    gap: 20px;
}

footer {
    text-align: center;
    padding: 40px;
}

#toTop {
    display: none;
    position: fixed;
    right: 20px;
    bottom: 20px;
    padding: 12px 16px;
    font-size: 16px;
    cursor: pointer;
  
    background: #fff;
    color: #000;
    border: none;
    border-radius: 50%;
  }