:root {
--black: #000;
--grey: #111;
--white: #fff;
--red: #e10600;
--light-grey: #ccc;  /* Added for better text contrast */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', Arial, sans-serif; background: var(--black); color: var(--white); overflow-x: hidden; }
html { scroll-behavior: smooth; }

header { position: fixed; width: 100%; background: #000; z-index: 1000; }
.nav-container { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; max-width: 1200px; margin: 0 auto; }
.logo { font-size: 1.5rem; font-weight: bold; color: var(--white); }
.logo span { color: var(--red); }
nav { display: flex; gap: 20px; }
nav a { color: var(--white); text-decoration: none; }
nav a:hover { color: var(--red); }
.menu-toggle { display: none; cursor: pointer; color: var(--white); font-size: 1.5rem; }

/* Neon Text */
.neon-text {
    font-size: 4rem;
    color: #fff;
    text-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 40px #ff0000, 0 0 80px #ff0000;
    animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
    0% { text-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 40px #ff0000, 0 0 80px #ff0000; }
    100% { text-shadow: 0 0 10px #ff2a2a, 0 0 20px #ff2a2a, 0 0 40px #ff2a2a, 0 0 80px #ff2a2a, 0 0 160px #ff2a2a; }
}

.Barcelona_Graffiti_Bombing {
    font-family: "Barcelona Graffiti Bombing", system-ui;
    font-weight: 400;
    font-style: normal;
    src: url(fonts/Barcelona_Graffiti_Bombing.otf)
}


.rubik-wet-paint-regular {
    font-family: "Rubik Wet Paint", system-ui;
    font-weight: 400;
    font-style: normal;
}

.logo-img img { width: 150px; height: auto; }  /* Renamed class for clarity */

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.95)), url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?auto=format&fit=crop&w=1920&q=80') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-content { max-width: 800px; }

.section { padding: 100px 20px; text-align: center; }
.container { max-width: 1200px; margin: 0 auto; }  /* Added for centered content */
.dark { background: var(--grey); }

.section p, .section ul { margin-bottom: 20px; color: var(--light-grey); line-height: 1.6; }
.section ul { list-style: none; }
.section li { margin-bottom: 10px; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    height: 250px;
    overflow: hidden;  /* Added */
    background: #222;
    transition: transform 0.4s ease;
}

.gallery-item:hover { transform: scale(1.05); }
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* Added for better image fitting */
    transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.1); }  /* Added zoom effect */

.btn { padding: 12px 25px; border: none; background: var(--red); color: white; cursor: pointer; margin-top: 20px; transition: background 0.3s; }
.btn:hover { background: #ff1a1a; }

/* Form Styling */
form { max-width: 600px; margin: 0 auto; }
form input, form textarea { width: 100%; padding: 10px; margin-bottom: 15px; background: var(--grey); border: 1px solid var(--red); color: var(--white); }
form textarea { height: 150px; resize: vertical; }

/* Custom Cursor */
.cursor {
    width: 8px; height: 8px; background: var(--red); border-radius: 50%;
    position: fixed; pointer-events: none; z-index: 2000;
    box-shadow: 0 0 15px var(--red), 0 0 30px var(--red);
    transform: translate(-50%, -50%);
}

.cursor-follower {
    width: 35px; height: 35px; border: 2px solid var(--red);
    border-radius: 50%; position: fixed; pointer-events: none; z-index: 1999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out;
}

/* Media Queries */
@media (max-width: 768px) {
    nav { display: none; flex-direction: column; background: #000; position: absolute; top: 60px; right: 0; padding: 20px; width: 100%; }
    nav.active { display: flex; }
    .menu-toggle { display: block; }
    .cursor, .cursor-follower { display: none; }
    .section { padding: 80px 15px; }
}