* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url('./components/cursor/default.png') 10 10, auto;
}

@font-face {
    font-family: 'Akira Expanded';
    src: url('./components/akira-expanded/Akira Expanded Demo.otf') format('opentype');
}

html {
    cursor: url('./components/cursor/default.png') 10 10, auto;
}

/* Custom cursor for all clickable elements */
a, button, .nav-link, .archive-link, .archive-nav-box, .back-button,
.subcore-gallery img, .core-gallery img, .faculty-gallery img, input, textarea, select {
    cursor: url('./components/cursor/pointer.png') 10 10, pointer !important;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1a1a1a;
    color: #fff;
    line-height: 1.6;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


.home-page {
    position: relative;
    overflow:hidden;
    flex: 1;
}

.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.background-video-desktop {
    display: block;
}

.background-video-mobile {
    display: none;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: auto;
    padding: 3rem 2rem 2rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
    padding-top: 2rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-subtitle {
    font-family: 'Akira Expanded', sans-serif;
    font-size: 2rem;
    color: #ff6b6b;
    letter-spacing: 3px;
    font-weight: bold;
}

.hero-title {
    font-family: 'Akira Expanded', sans-serif;
    font-size: 4rem;
    color: #fff;
    letter-spacing: 2px;
    font-weight: bold;
    text-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
    line-height: 1.2;
    background-clip: text;
}

.artists-page {
    background-color: #ebeaea;
}

.faculty-page {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('./components/faculty-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.core-page {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('./components/core-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.subcore-page {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('./components/subcore-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.archives-page {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('./components/archives-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Navbar Styles */
.navbar {
    background-color: #0d0d0d;
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    height: 70px;
    display: flex;
    align-items: center;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    width: 100%;
    height: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff6b6b;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff6b6b;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Dropdown Menu */
.dropdown {
    display: none;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-menu {
    display: none;
}

/* Hero Section */
.hero {
    display: none;
}

/* Content Wrapper */
.content-wrapper {
    display: none;
}

/* Cards */
.card-container {
    display: none;
}

.card {
    display: none;
}

.card-header {
    display: none;
}

.card img {
    display: none;
}

.card-title {
    display: none;
}

.card-actions {
    display: none;
}

.action-btn {
    display: none;
}

.artists-card {
    display: none;
}

.landing-card {
    display: none;
}

.flow-section {
    display: none;
}

.flow-label {
    display: none;
}

.flow-arrow {
    display: none;
}

.bottom-row {
    display: none;
}

.faculty-card {
    display: none;
}

.core-card {
    display: none;
}

.subcore-card {
    display: none;
}

/* Footer */
.footer {
    background-color: #0d0d0d;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #333;
    margin-top: auto;
}

.footer p {
    margin: 0;
    font-size: 2rem;
    color: #ccc;
}

.footer a {
    color: #ff6b6b;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: url('./components/cursor/pointer.png') 10 10, pointer !important;
}

.footer a:hover {
    color: #fff;
    text-decoration: underline;
}


/* Archives Page Styling */
.archives-container {
    padding: 3rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 70px);
}

.archives-row {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1400px;
}

.archive-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.archive-image {
    height: 200px;
    width: auto;
    object-fit: contain;
}

/* ARCHIVES MANGA SCROLL */

/* ARCHIVE SCROLL */

/* ARCHIVE SCROLL CONTAINER */
/* ARCHIVE SCROLL */
.archives-page {
    background: #ffffff !important;
    background-attachment: scroll !important;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    height: 100%;
}

/* Back Button */
.back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background-color: rgba(255, 107, 107, 0.9);
}

.archives-scroll{
    width: 100vw;
    display: block;
    margin: 0;
    padding: 0;
}

/* each panel - natural height, full width */
.archive-panel{
    width: 100vw;
    position: relative;
    display: block;
    margin: 0 0 50px 0;
    padding: 0;
}

/* last panel needs relative positioning for absolute links */
.last-panel {
    position: relative;
    display: inline-block;
    width: 100%;
}

/* remove margin from last panel */
.archive-panel:last-child {
    margin-bottom: 0;
}

/* image stretches full width, height is natural */
.archive-img{
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
    position: relative;
}

.archive-img-desktop {
    display: block;
}

.archive-img-mobile {
    display: none;
}

/* ARCHIVE NAVIGATION SECTION */
.archive-nav-section {
    width: 100%;
    padding: 3px 0;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.archive-nav-container {
    display: flex;
    gap: 2px;
    width: 100%;
    max-width: 100%;
}

.archive-nav-box {
    flex: 1;
    padding: 12px 20px;
    border: 5px solid #000000;
    background: transparent;
    color: #000000;
    text-decoration: none;
    font-size: 2rem;
    font-weight:bolder;
    transition: all 0.3s ease;
    text-align: center;
}

.archive-nav-box:hover {
    background: #000000;
    color: #ffffff;
    transform: scale(1.02);
}

/* SUB CORE GALLERY */
.subcore-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.subcore-gallery img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.subcore-gallery img:hover {
    transform: scale(1.05);
}

/* Center last image in subcore (25 images, last one is alone) */
.subcore-gallery img:last-child {
    grid-column: 2 / 3;
}

/* CORE GALLERY */
.core-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.core-gallery img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.core-gallery img:hover {
    transform: scale(1.05);
}

/* Center last image in core (28 images, last one is alone) */
.core-gallery img:last-child {
    grid-column: 2 / 3;
}

/* Responsive - 2 columns on tablets */
@media (max-width: 768px) {
    .subcore-gallery,
    .core-gallery,
    .faculty-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Reset centering on tablets */
    .subcore-gallery img:last-child,
    .core-gallery img:last-child,
    .faculty-gallery img:last-child {
        grid-column: auto;
    }
}

/* Responsive - 1 column on mobile */
@media (max-width: 480px) {
    .subcore-gallery,
    .core-gallery,
    .faculty-gallery {
        grid-template-columns: 1fr;
    }
}

/* CLICKABLE AREAS */
.archive-link{
    position: absolute;
    display: block;
    border-radius: 50%;
    transition: transform 0.2s ease;
    z-index: 10;
}

.archive-link:hover {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.2);
}

/* V'24 - Top center large star bubble - PRECISE TEXT POSITION */
.link-v24{
    top: 18%;
    left: 31%;
    width: 90px;
    height: 65px;
    border-radius: 40%;
}

/* V'20 - Left middle oval bubble - PRECISE TEXT POSITION */
.link-v20{
    top: 34%;
    left: 19%;
    width: 65px;
    height: 42px;
    border-radius: 50%;
}

/* V'23 - Bottom center-left bubble - PRECISE TEXT POSITION */
.link-v23{
    top: 59%;
    left: 30%;
    width: 65px;
    height: 48px;
    border-radius: 45%;
}

/* V'25 - Right center oval bubble - PRECISE TEXT POSITION */
.link-v25{
    top: 57%;
    left: 71%;
    width: 65px;
    height: 48px;
    border-radius: 50%;
}

/* V'22 - Top right small oval bubble - PRECISE TEXT POSITION */
.link-v22{
    top: 21%;
    left: 90%;
    width: 55px;
    height: 42px;
    border-radius: 50%;
}

.year-box {
    background-color: transparent;
    border: 3px solid #000;
    padding: 1.5rem 2rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    min-width: 100px;
    transition: all 0.3s ease;
}

.year-box:hover {
    background-color: #ff6b6b;
    color: #000;
    transform: scale(1.05);
}


/* MOBILE RESPONSIVE STYLES */

/* Tablets and smaller screens */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .logo img {
        height: 50px;
    }

    .navbar {
        height: 60px;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .archive-nav-box {
        padding: 10px 15px;
        font-size: 1rem;
    }

    .footer {
        padding: 1.5rem;
    }

    .footer p {
        font-size: 1rem;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .background-video-desktop {
        display: none;
    }

    .background-video-mobile {
        display: block;
    }

    .archive-img-desktop {
        display: none;
    }

    .archive-img-mobile {
        display: block;
    }

    .nav-menu {
        gap: 0.5rem;
        font-size: 0.75rem;
        position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
        background-color: #0d0d0d;
        flex-direction: column;
        padding: 1rem 0;
        display: none;
        border-top: 1px solid #333;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
    }

    .hamburger {
        display: flex;
    }

    .logo img {
        height: 40px;
    }

    .navbar {
        height: 50px;
    }

    .nav-container {
        padding: 0 0.5rem;
    }

    .nav-link {
        font-size: 0.75rem;
    }

    .archive-nav-container {
        gap: 1px;
        flex-wrap: wrap;
    }

    .archive-nav-box {
        padding: 8px 10px;
        font-size: 0.85rem;
        border: 3px solid #000000;
    }

    .back-button {
        padding: 8px 15px;
        font-size: 0.85rem;
        top: 10px;
        left: 10px;
    }

    .footer {
        padding: 1rem;
        margin-top: 2rem;
    }

    .footer p {
        font-size: 0.9rem;
    }

    .subcore-gallery,
    .core-gallery {
        gap: 10px;
        padding: 20px 10px;
    }

    .archive-img {
        width: 100%;
        height: auto;
    }

    .archive-panel {
        margin: 0 0 30px 0;
    }
}

/* Extra small phones */
@media (max-width: 360px) {
    .nav-menu {
        gap: 0.25rem;
        font-size: 0.65rem;
    }

    .logo img {
        height: 35px;
    }

    .navbar {
        height: 45px;
    }

    .nav-link {
        font-size: 0.65rem;
    }
}

.archive-nav-box {
    padding: 6px 8px;
    font-size: 0.75rem;
}

.footer p {
    font-size: 0.8rem;
}

.hero-title {
    font-size: 1.8rem;
}

.hero-subtitle {
    font-size: 1rem;
}


/* Tablet responsive for hero */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-section {
        min-height: calc(100vh - 60px);
    }
}

/* Mobile responsive for hero */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-section {
        min-height: calc(100vh - 50px);
        padding: 1rem;
    }

    .hero-content {
        gap: 0.5rem;
    }
}


/* FACULTY GALLERY */
.faculty-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
    justify-items: center;
}

.faculty-gallery img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.faculty-gallery img:hover {
    transform: scale(1.05);
}

/* Mobile - reset faculty gallery centering */
@media (max-width: 480px) {
    .faculty-gallery img:last-child {
        grid-column: auto;
    }
}
