
/* Global Page Styles */
#content {
    min-height: 90vh;
    position: relative;
    z-index: 1;
    background-color: #1f1f1f;
}

#content .content-container {
    width: 100%;
    padding: 0 5% 60px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Typography */
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 20px;
    text-align: justify;
}

.highlight-text {
    color: var(--neon-green);
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
}

.highlight-name {
    color: var(--neon-blue);
    font-weight: bold;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 40px 0 60px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: var(--white);
    margin: 20px 0 10px;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.hero-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--neon-blue);
    font-weight: 300;
    letter-spacing: 2px;
}

/* Layout Rows */
.about-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
    opacity: 0;
    animation: fadeInUp 1s forwards;
}

.about-row:nth-child(odd) {
    flex-direction: row;
}

.about-row:nth-child(even) {
    flex-direction: row-reverse;
}

.about-col-img {
    flex: 1;
    min-width: 300px;
}

.about-col-text {
    flex: 1.2;
    min-width: 300px;
}

/* Image Styling */
.img-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(0, 243, 255, 0.3);
    transition: transform 0.3s ease;
}

.img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 40%, rgba(0, 243, 255, 0.1) 50%, transparent 60%);
    background-size: 200% 200%;
    animation: shine 3s infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes shine {
    0% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

.img-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 243, 255, 0.2);
    border-color: var(--neon-blue);
}

.img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.img-wrapper:hover img {
    transform: scale(1.05);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(0, 243, 255, 0.3);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Stats Section */
.stats-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 20px;
    margin: 0 0 100px;
    border-radius: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    color: var(--neon-green);
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Info Grid (Ban Section) */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.info-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid var(--neon-blue);
    transition: background 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.info-item h3 {
    color: var(--neon-blue);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #ccc;
}

/* Quote Box */
.quote-box {
    background: rgba(0, 243, 255, 0.05);
    padding: 30px;
    border-radius: 0 20px 0 20px;
    position: relative;
    margin: 30px 0;
    border: 1px solid rgba(0, 243, 255, 0.1);
}

.quote-box i {
    font-size: 2rem;
    color: var(--neon-blue);
    opacity: 0.5;
    position: absolute;
    top: 20px;
    left: 20px;
}

.quote-box p {
    margin: 0;
    padding-left: 40px;
    font-style: italic;
    color: #fff;
}

.quote-author {
    text-align: right;
    margin-top: 15px;
    color: var(--neon-green);
    font-weight: bold;
}

/* Achievement List */
.achievement-list {
    margin-top: 30px;
}

.achievement-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.achievement-item:hover {
    border-color: var(--neon-green);
    transform: translateX(10px);
}

.achievement-item i {
    font-size: 1.5rem;
    color: var(--neon-green);
    margin-right: 20px;
    width: 30px;
    text-align: center;
}

.achievement-item span {
    color: #e0e0e0;
}

/* Orientation Cards */
.orientation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.orientation-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.orientation-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--neon-blue);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.1);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--neon-blue);
    margin-bottom: 20px;
}

.orientation-card h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.orientation-card p {
    font-size: 0.95rem;
    text-align: center;
    color: #ccc;
}

.slogan {
    text-align: center;
    font-size: 1.5rem;
    color: var(--neon-green);
    margin-top: 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    letter-spacing: 1px;
}

/* Contact Info */
.contact-info {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--neon-blue);
    width: 20px;
}

.contact-info a {
    color: var(--neon-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--white);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .about-row, 
    .about-row:nth-child(odd),
    .about-row:nth-child(even) {
        flex-direction: column;
        gap: 40px;
    }

    .about-col-img {
        width: 100%;
        order: -1; /* Image on top */
        min-width: auto;
        max-width: 600px; /* Limit max width for better look on tablets */
        margin: 0 auto;
    }
    
    .about-col-text {
        width: 100%;
        min-width: auto;
    }

    .section-title {
        font-size: 2rem;
        text-align: center;
        display: block;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    #content {
        padding-top: 80px; /* Account for fixed header */
    }

    .hero-section {
        padding: 20px 0 30px;
    }

    .hero-text h1 {
        font-size: 1.3rem;
        line-height: 1.4;
        padding: 0 10px;
    }
    
    .hero-text h2 {
        font-size: 1rem;
        margin-top: 5px;
    }

    .stats-section {
        padding: 30px 10px;
        margin-bottom: 60px;
    }

    .stat-item {
        width: 50%;
        margin-bottom: 30px;
        padding: 0 5px;
    }

    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .orientation-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .quote-box {
        padding: 20px;
        margin: 20px 0;
    }
    
    .quote-box i {
        font-size: 1.5rem;
        top: 10px;
        left: 10px;
    }
    
    .quote-box p {
        padding-left: 25px;
        font-size: 0.95rem;
    }

    .achievement-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .achievement-item i {
        margin-right: 0;
        margin-bottom: 15px;
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    p {
        font-size: 1rem;
        text-align: left; /* Justify can look bad on mobile */
    }
    
    .about-row {
        margin-bottom: 60px;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .stat-item {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 20px;
    }
    
    .stat-item:last-child {
        border-bottom: none;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 1.1rem;
    }
    
    .main-title.glitch {
        font-size: 2.5rem; /* Override global style if needed */
    }
}
