/* ---------------------------
   RESET & VARIABLES
--------------------------- */
:root {
    --bg-color: #0b0b0b;
    --text-color: #e0e0e0;
    --accent-color: #ff4d00; /* Vibrant Orange/Red for creative feel */
    --secondary-color: #1a1a1a;
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --padding-inline: clamp(1rem, 5vw, 4rem);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    cursor: none; /* Custom cursor */
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

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

ul {
    list-style: none;
}

img, video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ---------------------------
   TYPOGRAPHY
--------------------------- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(3rem, 10vw, 8rem);
}

h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 2rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

p {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    line-height: 1.6;
    color: #aaa;
}

/* ---------------------------
   CUSTOM CURSOR
--------------------------- */
.cursor {
    width: 20px;
    height: 20px;
    border: 1px solid var(--text-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
    mix-blend-mode: difference;
}

.cursor.active {
    width: 50px;
    height: 50px;
    background-color: var(--text-color);
    border: none;
}

/* ---------------------------
   COMPONENTS
--------------------------- */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid var(--text-color);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--text-color);
    z-index: -1;
    transition: width 0.4s ease;
}

.btn:hover {
    color: var(--bg-color);
}

.btn:hover::before {
    width: 100%;
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.btn-outline:hover {
    background: var(--text-color);
    color: var(--bg-color);
    border-color: var(--text-color);
}

.btn-fill {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--text-color);
    color: var(--bg-color);
    border: none;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.btn-fill:hover {
    transform: scale(1.05);
    background: var(--accent-color);
    color: white;
}

.section-padding {
    padding: clamp(4rem, 10vw, 8rem) var(--padding-inline);
}

/* ---------------------------
   NAVBAR (Consistent across all pages)
--------------------------- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem var(--padding-inline);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(11, 11, 11, 0.9);
    backdrop-filter: blur(10px);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

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

.nav-links li a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-links li a.active {
    color: var(--accent-color);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-color);
    z-index: 99;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

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

.mobile-nav a {
    font-size: 2rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.close-menu {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
}

/* ---------------------------
   FOOTER (Consistent across all pages)
--------------------------- */
footer {
    background: var(--secondary-color);
    padding: 4rem var(--padding-inline) 2rem;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo h2 {
    margin-bottom: 0.5rem;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid #333;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* ---------------------------
   RESPONSIVE
--------------------------- */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .mobile-nav {
        display: flex;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Additional responsive utilities */
@media (max-width: 768px) {
    .section-padding {
        padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 2rem);
    }
    
    h1 {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    h2 {
        font-size: clamp(2rem, 6vw, 3rem);
    }
}

/* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
* {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}


