@charset "UTF-8";

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    background-color: #111111;
    /* Deep Black Base */
    color: rgb(223, 223, 223);
    /* Main Text Color */
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: rgb(223, 223, 223);
    transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover {
    color: rgb(227, 37, 94);
    /* Accent Color on Hover */
    opacity: 0.8;
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Typography & Colors
   ========================================================================== */
.text-main {
    color: rgb(223, 223, 223);
}

.text-accent {
    color: rgb(227, 37, 94);
}

.text-center {
    text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

@keyframes rainbow-scroll {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 15px;
    /* Restored/Adjusted */
    display: inline-block;
    border-bottom: 2px solid #fff;
    /* White Underline */
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* ==========================================================================
   Layout Utils
   ========================================================================== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.section {
    padding: 60px 0;
}

.section-dark {
    background-color: #1a1a1a;
    /* Slightly lighter black for contrast sections */
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
header {
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 30px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: rgb(223, 223, 223);
}

.logo span {
    color: rgb(227, 37, 94);
}

/* Desktop Navigation */
.pc-nav {
    display: flex;
    gap: 30px;
}

.pc-nav a {
    font-size: 1rem;
    font-weight: 500;
    position: relative;
}

.pc-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -10px;
    /* Moves line lower to fix overlap */
    left: 0;
    background: #fff;
    /* White Underline */
    transition: width 0.3s;
}

.pc-nav a:hover::after {
    width: 100%;
}

/* Mobile Navigation (Hamburger) */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background-color: rgb(223, 223, 223);
    transition: all 0.3s;
    border-radius: 3px;
}

#drawer_input {
    display: none;
}

/* Drawer Logic */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(17, 17, 17, 0.98);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease-in-out;
    z-index: 999;
}

.mobile-nav ul {
    text-align: center;
}

.mobile-nav li {
    margin: 20px 0;
}

.mobile-nav a {
    font-size: 1.5rem;
    font-weight: bold;
}

#drawer_input:checked~.mobile-nav {
    right: 0;
}

/* Hamburger Animation when checked */
#drawer_input:checked~.mobile-menu-btn span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

#drawer_input:checked~.mobile-menu-btn span:nth-child(2) {
    opacity: 0;
}

#drawer_input:checked~.mobile-menu-btn span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}


/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    /* Override margin if needed */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    /* filter: brightness(0.5); Removed per user request */
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 0 20px;
}


.hero-logo {
    max-width: 600px;
    width: 80%;
    margin: 0 auto 20px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.8));
}

.hero p {
    font-size: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-top: 20px;
}

/* ==========================================================================
   Profile Section (Home Summary)
   ========================================================================== */
.profile-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.profile-text {
    background-color: #222;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    /* Rainbow Left Border */
    border-left: 4px solid transparent;
    border-image: linear-gradient(to bottom, red, orange, yellow, green, cyan, blue, violet) 1;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.info-card {
    background-color: #2a2a2a;
    padding: 25px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    /* Prepare for border change */
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    /* Rainbow Hover Border (Conic) */
    background: linear-gradient(#2a2a2a, #2a2a2a) padding-box, conic-gradient(red, orange, yellow, green, cyan, blue, violet, red) border-box;
}

.info-card h3 {
    color: rgb(227, 37, 94);
    margin-bottom: 15px;
    text-align: center;
}

/* ==========================================================================
   Music List Section
   ========================================================================== */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.music-item {
    background-color: #222;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    /* Prepare for border change */
}

.music-item:hover {
    transform: scale(1.03);
    /* Rainbow Hover Border (Conic) */
    background: linear-gradient(#222, #222) padding-box, conic-gradient(red, orange, yellow, green, cyan, blue, violet, red) border-box;
}

.cd-jacket {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    /* Rainbow Bottom Border */
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(to right, red, orange, yellow, green, cyan, blue, violet) 1;
}

.music-info {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.music-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: rgb(223, 223, 223);
}

.duric-btn {
    display: inline-block;
    background-color: rgb(227, 37, 94);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: auto;
}

.duric-btn:hover {
    background-color: rgb(255, 60, 110);
    transform: translateY(-2px);
    color: white;
}

/* ==========================================================================
   DJ Status Section
   ========================================================================== */
.dj-status-list {
    list-style: disc inside;
    margin-bottom: 30px;
}

.dj-status-list li {
    margin-bottom: 10px;
    color: rgb(200, 200, 200);
}

.event-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.event-table th,
.event-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #444;
}

.event-table th {
    color: rgb(227, 37, 94);
    width: 30%;
}

.event-table a {
    text-decoration: underline;
}

.event-table tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background-color: #000;
    padding: 50px 0 20px;
    /* Rainbow Top Border */
    border-top: 3px solid transparent;
    border-image: linear-gradient(to right, red, orange, yellow, green, cyan, blue, violet) 1;
    margin-top: 50px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-links a {
    font-size: 1.1rem;
    position: relative;
    text-decoration: none;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    /* Adjust distance */
    left: 0;
    background: #fff;
    /* White Underline */
    transition: width 0.3s;
}

.footer-links a:hover::after {
    width: 100%;

}

.copyright {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* ==========================================================================
   Responsive Queries
   ========================================================================== */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .pc-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        height: auto;
        padding: 100px 0 60px;
    }

    .hero-bg {
        height: 100%;
    }

    /* Cover full hero area */
    .mainHeader {
        height: 300px;
    }

    .profile-grid {
        grid-template-columns: 1fr;
    }

    .header-container {
        padding: 0 20px;
    }
}

@media (min-width: 769px) {
    .profile-grid {
        grid-template-columns: 1fr 1.5fr;
        /* Sidebar-ish layout for bio vs boxes */
    }
}

/* Error Page Styles */
.error-container {
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 120px;
    /* Prevent header overlap */
}

.error-code {
    font-size: 6rem;
    font-weight: bold;
    color: rgb(227, 37, 94);
    margin-bottom: 20px;
}

.error-msg {
    font-size: 1.5rem;
    margin-bottom: 40px;
}