body {
    margin: 0;
    font-family: Arial;
}


/* 顶栏 */
header {
    background: linear-gradient(#447bf3, #c4defb);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 导航 */
nav a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
}

/* 语言按钮 */
.lang-btn {
    background: #444;
    padding: 6px 10px;
    border-radius: 4px;
}

/* 加入我们按钮 */
.join-btn {
    background: #ffcc00;
    color: black;
    padding: 6px 12px;
    border-radius: 4px;
}

/* 首页大图 */
.hero {
    height: 400px;
    background: linear-gradient(#c4defb, #9bd35c);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* 大按钮 */
.big-btn {
    margin-top: 20px;
    background: #ffcc00;
    padding: 12px 20px;
    color: black;
    text-decoration: none;
    border-radius: 6px;
}

.logo {
    height: 90px;
}



.hero h2 {
    font-size: 48px;
    font-weight: bold;
}

.hero p {
    font-size: 18px;
}
nav a {
    font-size: 16px;
}


/* Intro */
.about {
    display: flex;
    padding: 60px;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
}

.about-text p {
    font-size: 18px;
}

.about-img {
    flex: 1;
}

.about-img img {
    width: 100%;
    border-radius: 10px;
}

.info {
    display: inline-block;
    /*background: #faf8f2;*/

    color:#0f2052;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border-radius: 20px;
    padding: 25px;
}


/* Star */
.about-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    justify-content: flex-end;
}

.about-img {
    display: flex;
    justify-content: flex-end;  /* right */
}

.star {
    max-width: 300px;
    height: auto;
}

/* Aircraft */

.plane-section {
    width: 100%;
    height: 100vh;     /* full */
    overflow: hidden;
}

.plane-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* fill */
    display: block;
}

.plane-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    /* tran */
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 25%,
        black 100%
    );

    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 25%,
        black 100%
    );
}



/* Partner */
.partners {
    background:#faf8f2;
    padding: 60px;
    text-align: center;
}

.partner-slider {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px;
}

.partner-slider img {
    height: 60px;
    flex-shrink: 0;
}

/* Bottom */
footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 20px;
}

.star {
    height: 300px;
}


.icon {
    height: 30px;
}

/* Fleet */
.fleetgen {
    background:#333e45;
    color: #faf8f2;
    padding: 60px;
    text-align: center;
}

.map-container {
  width: 800px;
  height: 500px;
  overflow: hidden;
  border: 2px solid #ccc;
  position: relative;
  cursor: grab;
}

.map-container:active {
  cursor: grabbing;
}

.map {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: top left;
  user-select: none;
  -webkit-user-drag: none;
}

.map-wrapper {
  display: flex;
  justify-content: center; 
}

/* Gallery */

.gallery {
    width: 80%;
    max-width: 800px;
    aspect-ratio: 16 / 10; 
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    position: relative;
}

.slides {
    display: flex;
    height: 100%;
    transition: transform 1s ease-in-out;
}

.slides img {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    object-fit: cover; 
    display: block;
}


.guide{
    body {
    margin: 0;
}

img {
    width: 100%;
    height: auto;
    display: block;
}
}