:root {
/* Colors */
--bg-dark: #0a0a0a;
--bg-card: rgba(23, 23, 23, 0.6);
--bg-card-hover: rgba(30, 30, 30, 0.8);
--primary: #8b5cf6;
--primary-glow: rgba(139, 92, 246, 0.5);
--secondary: #06b6d4;
--text-main: #ffffff;
--text-muted: #a3a3a3;
--border-color: rgba(255, 255, 255, 0.1);

/* Fonts */
--font-heading: 'Space Grotesk', sans-serif;
--font-body: 'Inter', sans-serif;

/* Spacing */
--container-width: 1200px;
--section-padding: 6rem 2rem;
}

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

body {
background-color: var(--bg-dark);
color: var(--text-main);
font-family: var(--font-body);
line-height: 1.6;
overflow-x: hidden;
cursor: none;
/* Hide default cursor */
}

html {
scroll-behavior: smooth;
}

/* Typography */
h1,
h2,
h3,
h4 {
font-family: var(--font-heading);
color: var(--text-main);
}

a {
text-decoration: none;
color: inherit;
transition: color 0.3s ease;
}

ul {
list-style: none;
}

/* Utilities */
.container {
max-width: var(--container-width);
margin: 0 auto;
padding: 0 1.5rem;
}

.gradient-text {
background: linear-gradient(135deg, var(--secondary), var(--primary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
display: inline-block;
}

.section {
padding: var(--section-padding);
}

.section-title {
font-size: 2.5rem;
margin-bottom: 3rem;
position: relative;
display: inline-block;
}

.section-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 0;
width: 60px;
height: 4px;
background: linear-gradient(90deg, var(--secondary), var(--primary));
border-radius: 2px;
}

/* Buttons */
.btn {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.8rem 1.5rem;
border-radius: 50px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
border: 1px solid transparent;
}

.btn-primary {
background: linear-gradient(135deg, var(--primary), #7c3aed);
color: white;
box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px var(--primary-glow);
}
/*HERE HERE HERE HEREE HERE */












    
.btn-outline {
background: transparent;
border-color: var(--primary);
color: var(--text-main);
box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-outline:hover {
border-color: var(--primary);
background: rgba(139, 92, 246, 0.1);
box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-sm {
padding: 0.5rem 1rem;
font-size: 0.9rem;
}

/* Background Effects */
#particles-canvas {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
pointer-events: none;
}

/* Custom Cursor */
.cursor {
position: fixed;
width: 8px;
height: 8px;
background: var(--text-main);
border-radius: 50%;
box-shadow: 0 4px 15px var(--primary-glow);
z-index: 9999;
transform: translate(-50%, -50%);
pointer-events: none;
transition: transform 0.1s;
mix-blend-mode: difference;
}

.cursor-follower {
position: fixed;
width: 24px;
height: 24px;
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.5);
border-radius: 50%;
z-index: 9998;
transform: translate(-50%, -50%);
pointer-events: none;
transition: transform 0.15s, background 0.3s, width 0.3s, height 0.3s;
mix-blend-mode: difference;
}

.cursor-follower.active {
width: 50px;
height: 50px;
background: rgba(139, 92, 246, 0.3);
border-color: transparent;
}

/* Header */
.glass-header {
position: fixed;
top: 0;
width: 100%;
z-index: 1000;
background: rgba(10, 10, 10, 0.7);
backdrop-filter: blur(12px);
border-bottom: 1px solid var(--border-color);
padding: 1rem 0;
}

nav {
max-width: var(--container-width);
margin: 0 auto;
padding: 0 1.5rem;
display: flex;
justify-content: space-between;
align-items: center;
}

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

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

.nav-links li a {
color: var(--text-muted);
font-weight: 500;
}

.nav-links li a:hover {
color: var(--text-main);
}

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

/* Hero */
.hero-section {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding-top: 5rem;
position: relative;
overflow: hidden;
}

.hero-content h1 {
font-size: 4.5rem;
line-height: 1.1;
margin-bottom: 1.5rem;
}

.hero-content .subtitle {
font-size: 1.5rem;
color: var(--text-muted);
margin-bottom: 2.5rem;
}

.hero-actions {
display: flex;
gap: 1rem;
justify-content: center;
}

/* Glass Cards */
.glass-card {
background: var(--bg-card);
border: 1px solid var(--border-color);
border-radius: 16px;
padding: 2rem;
transition: transform 0.3s ease, background-color 0.3s ease;
}

.glass-card:hover {
background-color: var(--bg-card-hover);
transform: translateY(-5px);
border-color: rgba(139, 92, 246, 0.3);
}

/* Projects Grid */
.projects-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}

.project-card h3 {
font-size: 1.5rem;
margin-bottom: 0.5rem;
}

.project-card p {
color: var(--text-muted);
margin-bottom: 1.5rem;
font-size: 0.95rem;
}

.tags {
display: flex;
gap: 0.5rem;
flex-wrap: wrap;
margin-bottom: 1.5rem;
}

.tags span {
font-size: 0.75rem;
padding: 0.25rem 0.75rem;
border-radius: 20px;
background: rgba(255, 255, 255, 0.05);
color: var(--text-muted);
border: 1px solid var(--border-color);
}

.card-links {
display: flex;
gap: 1rem;
}

.link-with-icon {
display: flex;
align-items: center;
gap: 0.4rem;
font-size: 0.9rem;
color: var(--text-main);
font-weight: 500;
}










    
.link-with-icon:hover {
color: var(--primary);
}

/* Media Section */
.media-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
gap: 2rem;
}

.video-wrapper {
padding: 0;
overflow: hidden;
}


.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    gap: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.video-placeholder:hover {
    color: var(--primary);
    transform: scale(1.2);
}

/*
.video-placeholder, .video-placeholder2, .video-placeholder3, .video-placeholder4 {
    width: 100%;
    aspect-ratio: 16/9;
    
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    gap: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}
.video-placeholder {
    background-image: url("MEDIA/IMG_3501.jpg");
}
.video-placeholder2 {
    background-image: url("MEDIA/IMG_0078.jpg");
}
.video-placeholder3 {
    background-image: url("MEDIA/IMG_0103.jpg");
}
.video-placeholder4 {
    background-image: url("MEDIA/IMG_0407.jpg");
}

.video-placeholder:hover , .video-placeholder2:hover, .video-placeholder3:hover, .video-placeholder4:hover {
    color: var(--primary);
    transform: scale(1.2);
}
*/

.video-placeholder i {
font-size: 3rem;
}

.video-info {
padding: 1.5rem;
}

.video-info h4 {
margin-bottom: 0.5rem;
}

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

/* Scripts Section */
.scripts-list {
display: flex;
flex-direction: column;
gap: 0;
padding: 0;
overflow: hidden;
}

.script-item {
display: flex;
align-items: center;
gap: 1.5rem;
padding: 1.5rem 2rem;
border-bottom: 1px solid var(--border-color);
transition: background 0.2s ease;
}

.script-item:last-child {
border-bottom: none;
}

.script-item:hover {
background: rgba(255, 255, 255, 0.02);
}

.script-icon {
font-size: 2rem;
color: var(--secondary);
}

.script-details {
flex: 1;
}

.script-details h4 {
margin-bottom: 0.25rem;
}

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

/* Footer all center */
.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
padding: 4rem 1.5rem;
border-top: 1px solid var(--border-color);
}

.footer-left h2 {
font-size: 2rem;
margin-bottom: 1rem;
}

.email-link {
font-size: 1.2rem;
color: var(--text-muted);
}

.email-link:hover {
color: var(--primary);
}

.social-links {
display: flex;
gap: 1.5rem;
}

.social-links a {
font-size: 1.5rem;
color: var(--text-muted);
transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
color: var(--text-main);
transform: translateY(-3px);
}

.copyright {
text-align: center;
padding: 2rem;
color: var(--text-muted);
font-size: 0.9rem;
border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Animations */
.fade-in-up {
opacity: 0;
transform: translateY(20px);
animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
animation-delay: 0.2s;
}

.delay-2 {
animation-delay: 0.4s;
}

@keyframes fadeInUp {
to {
    opacity: 1;
    transform: translateY(0);
}
}

/* Responsive */
@media (max-width: 768px) {
.nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-links.active {
    display: flex;
    animation: slideDown 0.3s ease forwards;
}

.mobile-menu-btn {
    display: block;
}

.hero-content h1 {
    font-size: 3rem;
}

.footer-content {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
}

.hero-actions {
    flex-direction: column;
}
}

@keyframes slideDown {
from {
    opacity: 0;
    transform: translateY(-10px);
}

to {
    opacity: 1;
    transform: translateY(0);
}
}

/* Scroll Animations */
.fade-in-section {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.visible {
opacity: 1;
transform: translateY(0);
}



* {box-sizing: border-box}
body {font-family: Verdana, sans-serif; margin:0}

/* Slideshow container */
.slideshow-container {
  position: relative;
}

/* Slides */
.mySlides {
  display: none;
  padding: 20px;
  text-align: center;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -30px;
  padding: 16px;
  #ffffff
  font-weight: bold;
  font-size: 40px;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  position: absolute;
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
  transform: scale(1.2);
}

/* The dot/bullet/indicator container */
.dot-container {
    text-align: center;
    padding: 20px;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

/* Add a background color to the active dot/circle */
.active, .dot:hover {
  background-color: #717171;
}

/* Add an italic font style to all quotes */
q {font-style: italic;}

/* Add a blue color to the author */
.author {color: cornflowerblue;}
