/* Core Global Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    background-color: #0b0b0b;
    color: #ffffff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Header & Main Navigation Layout */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #0b0b0b;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 40px;
}

.logo img {
    display: block;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #ffffff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff0055;
}

.nav-socials a {
    color: #ffffff;
    font-size: 1.1rem;
    margin-left: 15px;
    transition: opacity 0.3s;
}

.nav-socials a:hover {
    opacity: 0.6;
}

/* Mobile Menu Button Styling */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10001;
    padding: 5px;
    transition: color 0.2s;
}

.menu-toggle:hover {
    color: #ff0055;
}

/* Hero Display Section */
.hero {
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 0 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(11, 11, 11, 1)), 
                url('https://www.icubehk.co.uk/CantonDisco/images/background01.jpg') center/cover no-repeat;
}

.hero-content {
    max-width: 750px;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #cccccc;
    font-weight: 300;
}

/* Custom Interactive Marquee Row */
.partners {
    padding: 60px 0;
    background-color: #0b0b0b;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    text-align: center;
}

.partners h3 {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: #666;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.scroll-tip {
    font-size: 0.65rem;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 25px;
}

.marquee {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    user-select: none;
    cursor: grab;
    padding: 10px 0;
    width: 100%;
    gap: 50px;
}

.marquee::-webkit-scrollbar {
    display: none;
}
.marquee {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.marquee.active {
    cursor: grabbing;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-shrink: 0;
    animation: scroll-left 45s linear infinite;
}

.partner-link {
    display: inline-block;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.partner-link:hover {
    transform: scale(1.05);
}

.marquee-track img {
    height: 55px; 
    width: auto;
    object-fit: contain;
    filter: grayscale(10%) brightness(95%);
    pointer-events: none;
}

@keyframes scroll-left {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}

/* Action Display Cards Layout Split */
.action-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.card {
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 60px;
    background-size: cover;
    background-position: center;
    min-height: 450px;
}

.join-team {
    background-image: linear-gradient(rgba(0,0,0,0.2), #0b0b0b), url('https://www.icubehk.co.uk/CantonDisco/images/background02.jpg');
}

.venue-hire {
    background-image: linear-gradient(rgba(0,0,0,0.2), #0b0b0b), url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?q=80&w=1000');
}

.card-overlay {
    max-width: 450px;
}

.card-overlay h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.card-overlay p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 25px;
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 12px 35px;
    background-color: #ffffff;
    color: #000000;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #cccccc;
}

/* Feature Spotlight Configuration Block */
.vibe-spotlight {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.vibe-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.placeholder-img {
    width: 100%;
    height: 550px;
    background: url('https://images.unsplash.com/photo-1470225620780-dba8ba36b745?q=80&w=1200') center/cover no-repeat;
}

.vibe-text .tag {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #888;
    display: block;
    margin-bottom: 15px;
}

.vibe-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.vibe-text p {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 300;
}

.btn-link {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-bottom: 2px solid white;
    padding-bottom: 5px;
    transition: opacity 0.3s;
}

.btn-link:hover {
    opacity: 0.7;
}

/* Global Footer Styles */
footer {
    background-color: #000000;
    padding: 80px 40px 30px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 600px;
    margin: 0 auto 80px auto;
    text-align: center;
}

.footer-content h3 {
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.footer-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 30px;
}

.subscribe-form {
    display: flex;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.subscribe-form input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    font-size: 1rem;
    padding: 10px;
}

.subscribe-form input:focus {
    outline: none;
}

.subscribe-form button {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 10px;
    font-size: 1.1rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    color: #444;
    font-size: 0.8rem;
}

.footer-legal a {
    margin-left: 20px;
}

.footer-legal a:hover {
    color: #666;
}

/* Responsive Structural Breakpoints */
@media (max-width: 968px) {
    .nav-socials { 
        display: none; 
    }
    
    .menu-toggle { 
        display: block; 
    }

    /* Transform navigation layout into a high-performance side drawer modal overlay */
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #0b0b0b;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        padding: 100px 40px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 10000;
    }

    nav.open {
        right: 0;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 35px;
    }

    .nav-links a {
        font-size: 1.3rem;
        display: block;
        width: 100%;
    }

    .hero { padding-top: 60px; }
    .hero-content h1 { font-size: 3rem; }
    .action-grid { grid-template-columns: 1fr; }
    .vibe-container { grid-template-columns: 1fr; gap: 40px; }
    .placeholder-img { height: 350px; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}