:root {
    --primary-color: #2563eb; /* Blue 600 */
    --accent-color: #fcd34d; /* Amber 300 */
    --dark-bg: #030712; /* Gray 950 */
}
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: #f9fafb;
}

/* Custom styles for the video background */
#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    opacity: 0.5; /* Subtly dim the background */
    transform: translate(-50%, -50%); /* Center the video */
    object-fit: cover; /* Ensures video covers the container without distortion */
}

/* Style for the cinematic text overlay */
.hero-content {
    position: relative;
    z-index: 10;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
}


/* Card Hover Glow (From Index) */
.card-hover-effect {
    transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
    border-color: #374151; /* gray-700 */
}
.card-hover-effect:hover {
    /* Subtle blue/yellow glow on hover */
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.4), 0 0 10px rgba(252, 211, 77, 0.2);
    border-color: #3b82f6; /* blue-500 */
    transform: translateY(-5px);
}

/* Social Icon Glow */
.social-icon {
    color: #9ca3af; /* gray-400 */
    transition: color 0.3s, text-shadow 0.3s;
    filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
}
.social-icon:hover {
    color: #ffffff;
    filter: drop-shadow(0 0 8px rgba(37, 99, 235, 0.8)) drop-shadow(0 0 12px rgba(252, 211, 77, 0.6));
}


/* Styling for the central declaration content box */
.declaration-block {
    transition: box-shadow 0.5s, border-color 0.5s;
    border: 1px solid #374151; /* gray-700 */
    border-radius: 1rem;
    /* Apply a subtle initial glow */
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.1), 0 0 10px rgba(252, 211, 77, 0.05);
}
.declaration-block:hover {
    /* Intense glow on hover for focus */
    box-shadow: 0 0 40px rgba(37, 99, 235, 0.6), 0 0 25px rgba(252, 211, 77, 0.4);
    border-color: #3b82f6; /* blue-500 */
}

/* Formatting for the text paragraphs */
.declaration-text p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}
.declaration-text strong {
    color: var(--accent-color);
}

.declaration-bg-fixed {
    /* The core rule: makes the background image non-scrolling */
    background-image: url('../assets/img/declaration_bg.jpg'); 
    background-attachment: fixed;
    background-size: cover; /* Ensures the image covers the entire viewport */
    background-position: center center;
    background-repeat: no-repeat;
    
    /* Ensure the existing dark-bg is overridden if applied to the body */
    background-color: transparent; 
}