/* General Styling */
body {
    background-color: #121212;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif; /* New Body Font */
}

h1, h2, h3, h4, h5 {
    font-family: 'Syne', sans-serif; /* New Heading Font */
    text-transform: lowercase; /* Makes headers trendy lowercase like your name */
}

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

/* Color Variables */
:root {
    --gold: #9D00FF; /* ELECTRIC PURPLE */
    --dark: #121212;
    --darker: #0a0a0a;
    --grey: #2c2c2c;
}

.text-gold { color: var(--gold) !important; }
.bg-darker { background-color: var(--darker); }
.bg-gold { background-color: var(--gold); color: var(--darker); }

/* Navigation */
.navbar {
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
}

.navbar-brand {
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gold) !important;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    margin-left: 20px;
}

.nav-link:hover {
    color: var(--gold) !important;
}

/* Hero Section - NUCLEAR FIX */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* 1. The Video (Bottom Layer) */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%); /* Centers video */
    object-fit: cover;
}

/* 2. The Tint (Middle Layer) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Darkens the video */
    z-index: 1;
}

/* 3. The Text (Top Layer) */
.content-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Pins text to dead center */
    z-index: 100 !important; /* Force on top */
    text-align: center;
    width: 100%;
    color: #ffffff !important;
}
/* Style for the Arabic PNG Logo */
.header-logo {
    max-width: 80%; /* Limits size on large screens */
    height: auto;
}

/* Buttons */
.btn-gold {
    background-color: var(--gold);
    color: #000;
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-gold:hover {
    background-color: #fff;
    color: #000;
}

.btn-outline-light {
    border-radius: 0;
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Images */
.profile-img {
    border: 2px solid var(--gold);
    padding: 10px;
}

/* Experience Cards */
.project-card {
    background-color: var(--grey);
    border: none;
    transition: transform 0.3s ease;
}

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

.project-card .card-text {
    color: #ccc;
}

/* Section Titles */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--gold);
    bottom: 0;
    left: 0;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}
/* Full Screen Video Blocks */
.visual-stack {
    height: 100vh; /* Takes up full screen height */
    width: 100%;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #333; /* Subtle separator */
}

.visual-stack video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video fills screen without stretching */
    display: block;
}
