@import url('common.css');

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-image-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    opacity: 0;
    filter: blur(10px);
    animation: blur-fade-in 2s ease-out forwards;
    background: linear-gradient(135deg, var(--text-light), var(--aurora-turquoise));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fade-in 2s ease-out 0.5s forwards;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-image-mobile {
    display: none;
}

/* About Preview Section */
.about-preview {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
}

.about-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-preview-text {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-preview-text p {
    margin-bottom: 1.5rem;
}

.about-preview-image {
    border-radius: 15px;
    overflow: hidden;
}

.about-preview-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Edge Walk Section */
.edge-walk {
    padding: 5rem 0;
    background: linear-gradient(180deg, #1a1f3a 0%, #0a0e27 100%);
}

.edge-walk-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.edge-walk-text {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.edge-walk-text p {
    margin-bottom: 1.5rem;
}

.edge-walk-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.edge-image {
    border-radius: 15px;
    overflow: hidden;
}

.edge-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.1rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.accordion-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-content p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
    opacity: 0.9;
}

/* Article Section */
.article-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #1a1f3a 0%, #0a0e27 100%);
}

.article-content {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.article-content h3 {
    font-size: 1.5rem;
    color: var(--aurora-turquoise);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-content h3:first-of-type {
    margin-top: 0;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        padding-top: 80px;
        padding-bottom: 3rem;
    }

    .hero .aurora-background {
        display: none;
    }

    .hero-image-bg {
        display: none;
    }

    .hero-image-mobile {
        display: block;
        width: 100%;
        height: 50vh;
        min-height: 300px;
        position: relative;
        z-index: 5;
        margin-bottom: 2rem;
        order: 1;
    }

    .hero-image-mobile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .hero-content {
        position: relative;
        z-index: 10;
        padding: 2rem 1.5rem 0;
        order: 2;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .about-preview-content {
        grid-template-columns: 1fr;
    }

    .edge-walk-images {
        grid-template-columns: 1fr;
    }

    .edge-image img {
        height: 250px;
    }

    .article-content {
        font-size: 1rem;
    }

    .article-content h3 {
        font-size: 1.3rem;
    }
}

