/* home.css - Home Page Specific Styles */

/* Hello Section (formerly Hero) */
.hello {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.hello::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    opacity: 0.2;
    mix-blend-mode: overlay;
    z-index: 0;
}

/* Stage Lights */
.stage-light-left,
/* home.css - Home Page Specific Styles */

/* Hello Section (formerly Hero) */
.hello {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.hello::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    opacity: 0.2;
    mix-blend-mode: overlay;
    z-index: 0;
}

/* Stage Lights */
.stage-light-left,
.stage-light-right {
    position: absolute;
    bottom: 0;
    width: 60%;
    /* Broad light */
    height: 80%;
    background: radial-gradient(ellipse at bottom, rgba(0, 229, 255, 0.6) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 1;
    pointer-events: none;
    transform-origin: bottom center;
    opacity: 1;
    /* Initial opacity */
    transition: opacity 0.1s linear;
    /* Smooth transition for scroll script */
}

.stage-light-left {
    left: -10%;
    transform: rotate(20deg);
    background: radial-gradient(ellipse at bottom, rgba(98, 0, 234, 0.7) 0%, transparent 70%);
    /* Purple tint */
}

.stage-light-right {
    right: -10%;
    transform: rotate(-20deg);
    background: radial-gradient(ellipse at bottom, rgba(0, 229, 255, 0.7) 0%, transparent 70%);
    /* Cyan tint */
}

.hero-content {
    position: relative;
    z-index: 2;
    /* Above lights */
    text-align: center;
    max-width: 800px;
}

.hello h1 {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #b0b0b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hello p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

/* News Section */
.news {
    padding: 5rem 0;
    background-color: var(--bg-color);
    position: relative;
    z-index: 2;
    /* Ensure news sits above any fixed background elements if any */
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-card {
    background: var(--surface-color);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.news-date {
    font-family: var(--font-display);
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.news-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.news-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Member Preview Section */
.member-preview {
    padding: 5rem 0;
    background-color: var(--surface-color);
}

.member-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.member-preview-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 3/4;
    transition: transform 0.3s ease;
}

.member-preview-card:hover {
    transform: translateY(-10px);
}

.member-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.member-preview-card:hover .member-preview-img {
    transform: scale(1.1);
}

.member-preview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.member-preview-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--bg-color);
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-muted);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--surface-color);
    text-align: center;
}

.contact-box {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.contact-text {
    margin-bottom: 2rem;
    color: var(--text-muted);
}