:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --text-muted: #666666;
    --accent: #ffffff;
    --border: #333333;
    --font-main: 'Outfit', sans-serif;
    --cursor-size: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Hide default cursor */
}

body {
    background: linear-gradient(135deg, #2b0000 0%, #00002b 100%);
    /* Deep Red to Deep Blue */
    background-color: var(--bg-color);
    /* Fallback */
    background-attachment: fixed;
    /* Keep gradient fixed during scroll */
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: white;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: width 0.2s, height 0.2s;
}

body.hovering .cursor-outline {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: transparent;
}

/* Buttons */
.btn-primary {
    background-color: var(--accent);
    color: #000;
    padding: 15px 40px;
    border-radius: 0;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    border: 1px solid var(--accent);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent);
}

.btn-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    min-width: 250px;
    /* Ensure sufficient width */
}

.btn-icon {
    font-size: 1.4rem;
    /* Larger icon */
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.2));
    /* Subtle shadow for clarity */
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent);
    padding: 15px 40px;
    border-radius: 0;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    border: 1px solid var(--border);
    margin-left: 15px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--accent);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

#nav-logo {
    height: 50px;
    width: auto;
    filter: invert(1);
    mix-blend-mode: screen;
}

.logo-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

.logo-main {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
}

.logo-sub {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 50px;
    align-items: center;
}

.nav-links a.hover-link {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    opacity: 0.7;
    transition: 0.3s;
    text-transform: uppercase;
}

.nav-links a.hover-link:hover {
    opacity: 1;
}

.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1001;
    /* Above mobile nav */
}

.hamburger .line {
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: 0.3s;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.hero-bg-fill {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.15);
    z-index: 1;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 6rem;
    line-height: 0.9;
    margin-bottom: 40px;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-title .line {
    overflow: hidden;
    display: block;
}

.hero-title .word {
    display: inline-block;
    transform: translateY(100%);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    /* Reduced from 50px */
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
}

/* Visualizer */
.visualizer-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 50px;
    display: flex;
    gap: 8px;
    align-items: flex-end;
    height: 60px;
    z-index: 2;
}

.bar {
    width: 10px;
    background-color: #fff;
    height: 10px;
    animation: bounce 1s infinite ease-in-out alternate;
}

/* Random delays for visualizer */
.bar:nth-child(1) {
    height: 40%;
    animation-delay: 0.1s;
}

.bar:nth-child(2) {
    height: 70%;
    animation-delay: 0.3s;
}

.bar:nth-child(3) {
    height: 50%;
    animation-delay: 0.2s;
}

.bar:nth-child(4) {
    height: 90%;
    animation-delay: 0.4s;
}

.bar:nth-child(5) {
    height: 30%;
    animation-delay: 0.1s;
}

.bar:nth-child(6) {
    height: 80%;
    animation-delay: 0.5s;
}

.bar:nth-child(7) {
    height: 60%;
    animation-delay: 0.2s;
}

.bar:nth-child(8) {
    height: 100%;
    animation-delay: 0.3s;
}

.bar:nth-child(9) {
    height: 40%;
    animation-delay: 0.1s;
}

.bar:nth-child(10) {
    height: 70%;
    animation-delay: 0.4s;
}

@keyframes bounce {
    0% {
        height: 10%;
        opacity: 0.3;
    }

    100% {
        height: 100%;
        opacity: 1;
    }
}

/* Sections */
.section {
    padding: 120px 0;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 80px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1px;
    background-color: var(--border);
    border: 1px solid var(--border);
}

.service-card {
    background-color: #0d0d0d;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.95) 100%), var(--bg-img);
    background-size: cover;
    background-position: center;
    padding: 60px 40px;
    position: relative;
    transition: 0.4s;
    overflow: hidden;
    z-index: 1;
}

.service-card:hover {
    background-color: #333;
    transform: translateY(-5px);
}

.service-num {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-family: monospace;
}

.service-card h3 {
    font-size: 2rem;
    margin-bottom: 5px;
    font-weight: 700;
    transition: 0.4s;
}

.service-card p {
    color: var(--accent);
    /* Tagline visible always */
    font-size: 1rem;
    opacity: 0.8;
}

.service-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 10px;
    transform: translateY(20px);
    opacity: 0 !important;
    /* Force hide initially */
    transition: all 0.4s ease 0.1s;
    font-weight: 300;
    display: block;
}

.service-card:hover .service-desc {
    transform: translateY(0);
    opacity: 1 !important;
}

/* Marquee */
.marquee-section {
    padding: 40px 0;
    background: #fff;
    color: #000;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-size: 3rem;
    font-weight: 900;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Events */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 250px;
    gap: 15px;
}

.event-card {
    position: relative;
    background-color: #111;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%), var(--bg-img);
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.event-card:hover {
    transform: scale(0.98);
}

.event-card.wide {
    grid-column: span 2;
}

.event-card.tall {
    grid-row: span 2;
}

.event-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
}

.event-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    transform: translateY(10px);
    transition: 0.3s;
}

.event-card:hover .event-content h3 {
    transform: translateY(-5px);
    /* Move Title UP to make room */
    color: var(--accent);
}

.event-content p {
    color: rgba(255, 255, 255, 0.8);
    /* Brighter text for visibility */
    font-size: 0.95rem;
    margin-top: 8px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
    font-weight: 300;
}

.event-card:hover .event-content p {
    transform: translateY(0);
    opacity: 1;
}

/* Owner / Vision */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.vision-quote {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 40px;
    font-weight: 300;
}

.highlight-text {
    color: #fff;
    font-style: italic;
    font-weight: 700;
    border-bottom: 2px solid #fff;
}

.owner-card {
    border-left: 2px solid #333;
    padding-left: 30px;
}

.owner-role {
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.owner-name {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.owner-bio {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 20px;
}

.signature {
    font-family: 'Great Vibes', cursive;
    /* Use uploaded font if available or Google Font */
    font-size: 2rem;
    opacity: 0.5;
    margin-top: 20px;
}

/* Stats */
.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.stat-item {
    border: 1px solid var(--border);
    padding: 30px;
    text-align: center;
    transition: 0.3s;
}

.stat-item:hover {
    background: #111;
    border-color: #fff;
}

.stat-num {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Contact */
.contact-layout {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 100px;
}

.big-btn {
    font-size: 2rem;
    padding: 20px 60px;
}

.detail-group h4 {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.detail-group p {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.footer-separator {
    height: 1px;
    background: #333;
    margin: 80px 0 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h5 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-muted);
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
    display: inline-block;
}

.footer-brand {
    font-weight: 900;
    font-size: 1.5rem;
    color: #fff;
    display: block;
    margin-bottom: 15px;
}

.brand-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    color: #555;
    font-size: 0.8rem;
}

/* --- MOBILE RESPONSIVENESS OVERHAUL --- */
@media (max-width: 991px) {
    .hero-title {
        font-size: 4rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px 20px;
    }
}

@media (max-width: 768px) {

    /* Mobile Nav Overlay */
    .nav-links {
        position: fixed;
        background-color: #000;
        height: 100vh;
        width: 100%;
        top: 0;
        left: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 999;
        display: flex;
        /* Space for header */
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        margin: 25px 0;
    }

    .nav-links a {
        font-size: 2rem;
        font-weight: 700;
        opacity: 1;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active .line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active .line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Layout Adjustments */
    .container {
        padding: 0 20px;
    }

    .hero {
        padding-top: 60px;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        margin-left: 0;
        padding: 15px 0;
        text-align: center;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    /* Grid Resets for Mobile */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .events-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        /* Allow content to define height */
        gap: 30px;
    }

    /* Force visibility of hover text on mobile since hover doesn't exist */
    .service-desc,
    .event-content p {
        opacity: 1 !important;
        transform: translateY(0) !important;
        margin-top: 10px;
        position: relative;
    }

    .event-content {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
        /* Stronger gradient for readability */
    }

    .btn-call {
        display: flex;
        width: 100%;
        min-width: 0;
        /* Reset min-width */
    }

    .event-card.wide,
    .event-card.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .vision-quote {
        font-size: 1.8rem;
    }

    .contact-layout {
        flex-direction: column;
        text-align: center;
    }

    .big-btn {
        width: 100%;
        font-size: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    /* Hide Desktop-only Effects */
    .visualizer-container {
        display: none;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    * {
        cursor: auto !important;
    }
}