/* --- CSS Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f7f9;
    color: #333333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- Navigation Bar --- */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #42B4E6; /* Primary Blue */
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #555555;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: #42B4E6; /* Primary Blue */
}

/* --- Hero Section (Home) --- */
.hero {
    position: relative;
    flex-grow: 1;
    min-height: calc(100vh - 80px);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    padding: 6rem 2rem 2rem;
    background-image: url('Images/Home/AC Fireworks - Home page.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000000;
}

.hero-content {
    position: absolute;
    top: 2rem;
    right: 2rem;
    text-align: right;
}

.hero-text {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* --- Content Page (About) --- */
.content-page {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
}

.card {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.links-card {
    max-width: 900px;
}

.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.link-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 1px solid #b3dff6;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 20px rgba(66, 180, 230, 0.06);
}

.link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(66, 180, 230, 0.12);
}

.brand-logo {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo svg {
    width: 72px;
    height: 72px;
}

.brand-logo img {
    max-width: 72px;
    max-height: 72px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.text-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 16px;
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
}

.text-badge.furaffinity {
    background: linear-gradient(135deg, #ff7a00, #ff4d00);
}

.text-badge.furtrack {
    background: linear-gradient(135deg, #42B4E6, #2895c4);
}

/* --- Art Gallery Page --- */
.art-page {
    flex-grow: 1;
    padding: 4rem 2rem 2rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.art-header {
    text-align: center;
    margin-bottom: 3rem;
}

.art-header h1 {
    font-size: 2.5rem;
    color: #42B4E6;
    margin-bottom: 0.5rem;
}

.art-header p {
    font-size: 1.1rem;
    color: #666666;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
}

@media (max-width: 1400px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1000px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(66, 180, 230, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(66, 180, 230, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    display: block;
    background-color: #f0f9ff;
}

.gallery-title {
    padding: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333333;
    text-align: center;
    line-height: 1.4;
}

.video-item {
    position: relative;
}

.video-item video {
    width: 100%;
    height: 250px;
    display: block;
    background-color: #000000;
}

.furtrack-card {
    text-decoration: none !important;
}

.placeholder-content {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #42B4E6, #2895c4);
}

.ft-badge {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
}

.card h2 {
    font-size: 2.5rem;
    color: #42B4E6;
    margin-bottom: 1rem;
}

.divider {
    height: 4px;
    width: 60px;
    background-color: #42B4E6;
    margin: 0 auto 1.5rem auto;
    border-radius: 2px;
}

.card p {
    font-size: 1.2rem;
    color: #444444;
    line-height: 1.6;
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 2rem;
    background-color: #ffffff;
    color: #999999;
    font-size: 0.875rem;
    border-top: 1px solid #eaeaea;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}