/* **********************************************************
 * add custom styles after imports below
 * ********************************************************** */

@import "default.css";
@import "layout.css";
@import "menu.css";
@import "queries.css";

/* **********************************************************
 * to import a font, use the @import option, you can find
 * lots of font options at fonts.google.com for example.
 * ********************************************************** */

@import url('https://rsms.me/inter/inter.css');

html {
    font-family: 'Inter', sans-serif;
}

/* **********************************************************
 * Custom Scrollbar - Glassmorphism Style
 * ********************************************************** */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg,
        rgba(100, 180, 255, 0.3),
        rgba(80, 150, 255, 0.2));
    border: 1px solid rgba(100, 180, 255, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg,
        rgba(100, 180, 255, 0.5),
        rgba(80, 150, 255, 0.3));
    box-shadow: 0 0 20px rgba(100, 180, 255, 0.4);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(100, 180, 255, 0.3) rgba(0, 0, 0, 0.3);
}

/* **********************************************************
 * Custom Text Selection
 * ********************************************************** */

::selection {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

::-moz-selection {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* **********************************************************
 * Customizing
 *
 * changes to default settings like colors, typography,
 * spacing can be made in default.css
 *
 * other custom settings, start below
 *
 * ********************************************************** */

* {
    line-height: 115%;
    font-weight: 400;
}


/* Professional shadow on navigation items */
.main__nav-item {
    transition: all 0.3s ease;
}

.main__nav-item:hover {
    transform: translateY(-2px);
}

body {
    background: #000000;
    color: var(--color-fg);
    position: relative;
    overflow-x: hidden;
}

body.homepage {
    overflow: hidden;
    height: 100vh;
}

/* Particle Canvas Background */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(ellipse at center, #0a0a0a 0%, #000000 100%);
}

body > *:not(#particle-canvas):not(header):not(footer) {
    position: relative;
    z-index: 2;
}

main {
    position: relative;
    z-index: 2;
}

/* Ambient background glow effect - monochrome */
body.homepage::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    background: radial-gradient(ellipse at center,
        rgba(255, 255, 255, 0.03) 0%,
        rgba(255, 255, 255, 0.01) 40%,
        transparent 70%);
    z-index: 1;
    pointer-events: none;
    animation: ambientPulse 10s ease-in-out infinite;
}

/* Ensure HUD elements stay above everything */
#hud-tracker,
#flow-hud-tracker {
    pointer-events: none !important;
}

@keyframes ambientPulse {
    0%, 100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* Hero Section with White Box */
#hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    padding: var(--spacing-m);
    display: flex;
    justify-content: center;
    align-items: center;
}

.title-box {
    background: transparent;
    padding: var(--spacing-xl) var(--spacing-xxl);
    border: none;
    position: relative;
    animation: fadeInScale 1.5s ease-out;
    max-width: 1200px;
    margin: 0 auto;
}

.title-box h1 {
    color: #ffffff;
    font-size: clamp(3rem, 12vw, 9rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0 0 var(--spacing-m) 0;
    text-align: center;
    line-height: 1.1;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.3),
                 0 0 80px rgba(255, 255, 255, 0.2),
                 0 4px 20px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.9) 50%,
        rgba(200, 200, 255, 0.95) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(1rem, 3vw, 1.8rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: var(--spacing-s) 0;
    text-align: center;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    font-weight: 300;
    letter-spacing: 0.03em;
    margin: var(--spacing-l) 0 0 0;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}

/* Responsive adjustments for title box */
@media (max-width: 768px) {
    .title-box {
        padding: var(--spacing-l) var(--spacing-m);
    }

    .title-box h1 {
        font-size: clamp(1.5rem, 6vw, 3rem);
        letter-spacing: 0.15em;
    }

    .hero-subtitle {
        font-size: clamp(0.8rem, 2.5vw, 1.2rem);
    }

    .hero-description {
        font-size: clamp(0.8rem, 1.8vw, 1rem);
        padding: 0 var(--spacing-s);
    }
}


/* **********************************************************
 * Glassmorphism Content Cards
 * ********************************************************** */

section {
    position: relative;
}

#weekly-reports > div,
article section > div {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 2px;
    transition: all 0.3s ease;
}

#weekly-reports > div:hover,
article section > div:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

/* Enhanced image styling */
img {
    border-radius: 0;
    transition: all 0.3s ease;
    opacity: 0.9;
}

img:hover {
    opacity: 1;
}

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

.column {
    animation: fadeInUp 0.8s ease-out;
}

.column:nth-child(1) {
    animation-delay: 0.1s;
}

.column:nth-child(2) {
    animation-delay: 0.2s;
}

header {
    animation: fadeInUp 0.6s ease-out;
}

main {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Enhanced link styling */
p a {
    position: relative;
    color: var(--color-link);
    text-decoration: none;
    transition: all 0.3s ease;
}

p a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-link), var(--color-link-hover));
    transition: width 0.3s ease;
}

p a:hover::after {
    width: 100%;
}

@media (orientation: portrait) {
    * {
        font-size: 16px;
    }
}

/* **********************************************************
 * Weekly Page Header Styling
 * ********************************************************** */

.page-header {
    padding-top: calc(80px + var(--spacing-xl));
    padding-bottom: var(--spacing-xl);
    position: relative;
}

.page-title {
    color: var(--color-1);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 100;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0 0 var(--spacing-m) 0;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.page-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

/* Enhanced Weekly Section */
#weekly-reports {
    min-height: 60vh;
}

#weekly-reports .weekly {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: var(--spacing-l);
    transition: all 0.4s ease;
}

#weekly-reports .weekly:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

#weekly-reports h2 {
    color: var(--color-1);
    font-weight: 200;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-m);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    opacity: 0.9;
}

#weekly-reports ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#weekly-reports ul li {
    margin: var(--spacing-s) 0;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

#weekly-reports ul li:nth-child(1) { animation-delay: 0.1s; }
#weekly-reports ul li:nth-child(2) { animation-delay: 0.15s; }
#weekly-reports ul li:nth-child(3) { animation-delay: 0.2s; }
#weekly-reports ul li:nth-child(4) { animation-delay: 0.25s; }
#weekly-reports ul li:nth-child(5) { animation-delay: 0.3s; }
#weekly-reports ul li:nth-child(6) { animation-delay: 0.35s; }
#weekly-reports ul li:nth-child(7) { animation-delay: 0.4s; }
#weekly-reports ul li:nth-child(8) { animation-delay: 0.45s; }

#weekly-reports ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 0.05em;
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-s);
    border-radius: 2px;
    transition: all 0.3s ease;
    position: relative;
}

#weekly-reports ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.8),
        rgba(255, 255, 255, 0.3)
    );
    transition: width 0.4s ease;
}

#weekly-reports ul li a:hover {
    color: var(--color-1);
    transform: translateX(8px);
}

#weekly-reports ul li a:hover::before {
    width: 100%;
}

/* Professional transitions */
* {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Improved glassmorphism depth */
.main__nav-bar {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* **********************************************************
 * Weekly Page Centered Layout
 * ********************************************************** */

.weekly-main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl) var(--spacing-m);
}

#weekly-reports-centered {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.weekly-container {
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: var(--spacing-xl);
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.5);
}

.weekly-header-compact {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.weekly-title {
    color: #ffffff;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 var(--spacing-s) 0;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.weekly-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0;
}

.weekly-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.semester-column {
    min-width: 0;
}

.semester-title {
    color: #ffffff;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 var(--spacing-m) 0;
    text-align: center;
    opacity: 0.9;
}

.week-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-s);
}

.week-list li {
    opacity: 0;
    animation: fadeInUp 0.5s ease-out forwards;
}

.week-list li:nth-child(1) { animation-delay: 0.1s; }
.week-list li:nth-child(2) { animation-delay: 0.15s; }
.week-list li:nth-child(3) { animation-delay: 0.2s; }
.week-list li:nth-child(4) { animation-delay: 0.25s; }
.week-list li:nth-child(5) { animation-delay: 0.3s; }
.week-list li:nth-child(6) { animation-delay: 0.35s; }
.week-list li:nth-child(7) { animation-delay: 0.4s; }
.week-list li:nth-child(8) { animation-delay: 0.45s; }

.week-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-s) var(--spacing-m);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.week-list li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.week-list li a:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.week-list li a:hover::before {
    transform: scaleY(1);
}

.week-number {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: 0.05em;
}

.week-label {
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0.6;
}

.semester-divider {
    width: 1px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 20%,
        rgba(255, 255, 255, 0.2) 80%,
        transparent 100%
    );
    position: relative;
}

.semester-divider::before,
.semester-divider::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.semester-divider::before {
    top: 0;
}

.semester-divider::after {
    bottom: 0;
}

/* HUD Corner Decorations */
.hud-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    pointer-events: none;
    z-index: 10;
}

.hud-corner-tl {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.hud-corner-tr {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.hud-corner-bl {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.hud-corner-br {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

/* Animated corner pulse */
@keyframes cornerPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.7;
    }
}

.hud-corner::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    animation: cornerPulse 2s ease-in-out infinite;
}

.hud-corner-tl::after {
    top: -3px;
    left: -3px;
}

.hud-corner-tr::after {
    top: -3px;
    right: -3px;
}

.hud-corner-bl::after {
    bottom: -3px;
    left: -3px;
}

.hud-corner-br::after {
    bottom: -3px;
    right: -3px;
}

/* Scanline effect */
.hud-scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%
    );
    pointer-events: none;
    animation: scanline 4s linear infinite;
    z-index: 5;
}

@keyframes scanline {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(600px);
        opacity: 0;
    }
}

/* Responsive layout */
@media (max-width: 768px) {
    .weekly-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-l);
    }

    .semester-divider {
        display: none;
    }

    .weekly-container {
        padding: var(--spacing-l);
    }
}

/* **********************************************************
 * Week Detail Page - Clean & Sophisticated Layout
 * ********************************************************** */

.week-detail-page {
    background: #000000;
    padding-top: var(--header__height);
}

/* Hero Section */
.week-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem var(--spacing-m) 6rem;
    position: relative;
}

.week-hero-content {
    max-width: 1000px;
    text-align: center;
}

.week-meta {
    display: inline-block;
    color: rgba(255, 255, 255, 0.4);
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
}

.week-hero-title {
    color: #ffffff;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    letter-spacing: 0.02em;
    margin: 0 0 2rem 0;
    line-height: 1.1;
}

.week-hero-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    font-weight: 300;
    letter-spacing: 0.01em;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Content Sections */
.week-content {
    background: #000000;
}

.content-section {
    padding: 4rem 0;
    position: relative;
}

.content-section:first-child {
    padding-top: 3rem;
}

.content-section:last-child {
    padding-bottom: 0.75rem;
}

.content-section.full-bleed {
    padding: 3rem 0;
}

/* Container Variations */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-m);
}

.content-container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-m);
}

.content-section:last-child .content-container-narrow {
    padding-bottom: var(--spacing-xs);
}

/* Section Headers */
.section-header {
    margin-bottom: 4rem;
}

.section-title {
    color: #ffffff;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 300;
    letter-spacing: 0.03em;
    margin: 0;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.8);
}

/* Typography */
.content-body {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.8;
}

.content-body .lead-text {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.content-body p {
    margin-bottom: 1.5rem;
}

.content-body p:last-child {
    margin-bottom: 0;
}

.content-body h3 {
    color: #ffffff;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 600;
    letter-spacing: 0.03em;
    margin: 2.5rem 0 1.25rem 0;
}

.content-body h3:first-child {
    margin-top: 0;
}

/* Grid Layouts */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.content-column {
    color: rgba(255, 255, 255, 0.85);
}

/* Image Grids */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.image-grid-item {
    position: relative;
    overflow: hidden;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-grid-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.image-grid-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.image-grid-item:hover img {
    transform: scale(1.01);
}

.image-grid-caption {
    padding: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    background: rgba(0, 0, 0, 0.3);
}

/* Concept Cards Grid - Vertical Stack */
.concept-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2.5rem;
}

.concept-card {
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.concept-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    background: rgba(0, 0, 0, 0.4);
}

.concept-card h3 {
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    margin-bottom: 0;
    text-transform: none;
}

.concept-card-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.3);
}

.concept-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.concept-card:hover .concept-card-image img {
    transform: scale(1.05);
}

/* Section Header Image - Taller */
.section-header-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.section-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.section-header-image:hover img {
    transform: scale(1.05);
}

/* Section Header Image - Full (No Cropping) */
.section-header-image-full {
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.section-header-image-full img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.section-header-image-full:hover img {
    transform: scale(1.02);
}

/* Artist Profile Section */
.artist-profile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.artist-profile-image {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.4);
    transition: all 0.5s ease;
}

.artist-profile-image:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

.artist-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.artist-profile-image:hover img {
    transform: scale(1.08);
}

.artist-profile-content h3 {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.artist-profile-content .artist-intro {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

/* Key Concepts Highlight Boxes */
.concept-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.concept-highlight-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.concept-highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1));
    transition: all 0.4s ease;
}

.concept-highlight-box:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.concept-highlight-box:hover::before {
    width: 5px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.3));
}

.concept-highlight-box h4 {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.concept-highlight-box p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* Works Showcase Grid */
.works-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.work-item {
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.work-item-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.4);
}

.work-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.work-item:hover .work-item-image img {
    transform: scale(1.1);
}

.work-item-caption {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.5);
}

.work-item-caption h4 {
    font-size: 1.1rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.work-item-caption p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Connection Callout Box */
.connection-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-left: 4px solid rgba(255, 255, 255, 0.3);
    padding: 2.5rem;
    margin: 3rem 0;
    position: relative;
    backdrop-filter: blur(10px);
}

.connection-box::before {
    content: '→';
    position: absolute;
    top: 2.5rem;
    left: -2rem;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
}

.connection-box h3 {
    font-size: 1.3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.connection-box p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .artist-profile {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .concept-highlights {
        grid-template-columns: 1fr;
    }

    .works-showcase {
        grid-template-columns: 1fr;
    }
}

.concept-card-text {
    width: 100%;
}

.concept-card-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: none;
}

/* Wide Image Grid */
.image-grid-wide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.image-grid-item-wide {
    position: relative;
    overflow: hidden;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-grid-item-wide:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.image-grid-item-wide img,
.image-grid-item-wide video {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.image-grid-item-wide:hover img,
.image-grid-item-wide:hover video {
    transform: scale(1.01);
}

/* Full Width Images */
.image-full {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-m);
}

.image-full img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.6s ease;
}

.image-full img:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

/* Image Figures */
.image-figure {
    margin: 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0;
    overflow: hidden;
}

.image-figure img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    padding: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.image-caption strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

/* Video Styling */
.video-wrapper {
    margin-top: 2.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.video-wrapper:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.video-player {
    width: 100%;
    height: auto;
    display: block;
}

/* **********************************************************
 * Hover Interaction Effects for Week Detail Pages
 * ********************************************************** */

/* Hover Interactions on Elements */
.week-detail-page .section-title {
    transition: color 0.3s ease;
}

.week-detail-page .section-title:hover {
    color: rgba(255, 255, 255, 1);
}

.week-detail-page .content-body p {
    transition: color 0.3s ease;
}

.week-detail-page .content-body p:hover {
    color: rgba(255, 255, 255, 0.95);
}

.week-detail-page .image-grid-item {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.week-detail-page .image-grid-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 60px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.week-detail-page .image-full {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.week-detail-page .image-full:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 50px rgba(255, 255, 255, 0.15);
}

.week-detail-page .image-full:hover img {
    transform: scale(1.01);
    transition: transform 0.6s ease;
}

.week-detail-page .image-grid-item-wide {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.week-detail-page .image-grid-item-wide:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 14px 55px rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Subtle shape transformations on hover */
.week-detail-page .week-meta {
    transition: all 0.3s ease;
}

.week-detail-page .week-meta:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.3);
}

.week-detail-page .image-figure {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.week-detail-page .image-figure:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    footer .scroll__top {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .week-hero {
        min-height: 60vh;
        padding: 5rem var(--spacing-m) 4rem;
    }

    .week-hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .content-section {
        padding: 4rem 0;
    }

    .content-section:first-child {
        padding-top: 3rem;
    }

    .content-section.full-bleed {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .concept-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .image-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .image-grid-wide {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Enhanced footer styling */
footer {
    position: relative;
}

footer .scroll__top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.scroll__top a {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.scroll__top a:hover {
    color: rgba(255, 255, 255, 1);
}

/* Enhance focus states with modern glow */
a:focus,
button:focus {
    outline: 2px solid rgba(100, 180, 255, 0.6);
    outline-offset: 4px;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(100, 180, 255, 0.3);
}
