/* Additional styles for content pages */

.page-hero {
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    text-align: center;
    border-bottom: 3px solid var(--accent);
    position: relative;
    overflow: hidden;
}

/* Floating Emojis */
.floating-emojis {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.emoji-float {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: float-gentle 6s infinite ease-in-out;
}

@keyframes float-gentle {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    margin-bottom: 20px;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 1;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 15px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--accent);
    font-style: italic;
}

/* Content Section */
.content-section {
    padding: 60px 20px;
}

.intro-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid var(--accent);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
    text-align: center;
}

.intro-box h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.intro-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* Photo Grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.photo-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.photo-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.photo-placeholder {
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 40px;
    text-align: center;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.photo-placeholder p {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.photo-placeholder small {
    opacity: 0.7;
}

.photo-caption {
    padding: 20px;
    text-align: center;
}

.photo-caption p {
    font-style: italic;
    opacity: 0.9;
}

/* Actual Photo Styles (for when photos are added) */
.photo-card img {
    width: 100%;
    height: 350px;
    object-fit: contain;
    display: block;
    background: rgba(0, 0, 0, 0.1);
}

/* Memory Cards */
.memories-section {
    margin-bottom: 60px;
}

.memories-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--accent);
}

.memory-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.memory-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s;
}

.memory-card:hover {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
}

.memory-year {
    display: inline-block;
    background: var(--gradient);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.memory-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.memory-card p {
    line-height: 1.6;
    opacity: 0.9;
}

/* Video Section */
.video-section {
    margin-bottom: 60px;
}

.video-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--accent);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.video-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.video-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.video-placeholder {
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 40px;
    text-align: center;
}

.video-caption {
    padding: 20px;
    text-align: center;
}

.video-caption p {
    font-style: italic;
    opacity: 0.9;
}

/* Quote Box */
.quote-box {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
    border-left: 5px solid var(--accent);
    border-radius: 20px;
    padding: 40px;
    margin: 60px 0;
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.quote-box blockquote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--light);
}

.quote-box cite {
    font-size: 1rem;
    opacity: 0.7;
}

/* Page Navigation */
.page-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.nav-btn {
    flex: 1;
    min-width: 200px;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--accent);
    border-radius: 50px;
    color: var(--light);
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    transition: all 0.3s;
}

.nav-btn:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.nav-btn.prev {
    text-align: left;
}

.nav-btn.next {
    text-align: right;
}

/* Trading Ticker (for trading page) */
.trading-ticker {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--trading-green);
    border-radius: 10px;
    padding: 20px;
    margin: 40px 0;
    overflow: hidden;
}

.ticker-item {
    display: inline-block;
    margin-right: 40px;
    font-family: 'Courier New', monospace;
}

.ticker-symbol {
    font-weight: bold;
    color: var(--accent);
}

.ticker-price {
    color: var(--trading-green);
}

.ticker-change {
    font-size: 0.9rem;
}

.ticker-change.positive {
    color: var(--trading-green);
}

.ticker-change.negative {
    color: var(--trading-red);
}

/* Timeline (for university page) */
.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-content {
    flex: 1;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    margin: 0 40px;
    transition: all 0.3s;
}

.timeline-content:hover {
    transform: scale(1.05);
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.timeline-date {
    display: inline-block;
    background: var(--gradient);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.gallery-item {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .photo-grid,
    .video-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column !important;
    }

    .timeline-content {
        margin: 0 0 0 40px;
    }

    .page-navigation {
        flex-direction: column;
    }

    .nav-btn {
        text-align: center !important;
    }
}
