:root {
    /* Colors */
    --color-primary: #DC143C; /* Crimson Red */
    --color-secondary: #00BFFF; /* Deep Sky Blue */
    --color-background: #1A1A1A; /* Dark Gray */
    --color-footer-bg: #0F0F0F; /* Even Darker Gray */
    --color-text-light: #E0E0E0;
    --color-text-dark: #333333;
    --color-accent: #FFD700; /* Gold for metallic sheen */

    /* Section Backgrounds */
    --section-bg-1: #1A1A1A;
    --section-bg-2: #121212;
    --section-bg-3: #0F0F0F;

    /* Typography */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;

    --font-size-h1: 4.5rem;
    --font-size-h2: 3rem;
    --font-size-h3: 2.25rem;
    --font-size-p: 1.125rem;
    --font-size-button: 1rem;

    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;

    /* Spacing */
    --spacing-md: 1.5rem;
    --spacing-lg: 3rem;
    --spacing-xl: 6rem;

    /* Border Radius */
    --border-radius-full: 9999px; /* For rounded-full buttons */
    --border-radius-sm: 0.25rem;

    /* Transitions */
    --transition-speed: 0.3s;
    --transition-ease: ease-in-out;

    /* Shadows */
    --shadow-button-inner: inset 0 2px 4px rgba(0, 0, 0, 0.6);
    --shadow-button-hover: 0 5px 15px rgba(220, 20, 60, 0.6); /* Primary color shadow */
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-light);
    background-color: var(--color-background);
    line-height: 1.7; /* Generous line-height for readability */
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Global Reset/Base */
*, *::before, *::after {
    box-sizing: border-box;
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color var(--transition-speed) var(--transition-ease);
}

a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-light);
    line-height: 1.2;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    font-weight: var(--font-weight-extrabold);
    letter-spacing: -0.05em; /* Crisp, tight typography */
}

h1 {
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-extrabold);
    text-transform: uppercase;
}

h2 {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
}

h3 {
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-semibold);
}

p {
    font-size: var(--font-size-p);
    margin-bottom: 1rem;
}

/* Section Backgrounds */
.section-bg-1 {
    background-color: var(--section-bg-1);
}

.section-bg-2 {
    background-color: var(--section-bg-2);
}

.section-bg-3 {
    background-color: var(--section-bg-3);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: var(--font-size-button);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    border: none;
    border-radius: var(--border-radius-full);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    color: var(--color-text-light);
    background-color: var(--color-primary); /* Default button color */
    box-shadow: var(--shadow-button-inner);
    transition: all var(--transition-speed) var(--transition-ease);
    letter-spacing: 0.05em;
    -webkit-clip-path: polygon(0% 15%, 15% 0%, 100% 0%, 100% 85%, 85% 100%, 0% 100%);
    clip-path: polygon(0% 15%, 15% 0%, 100% 0%, 100% 85%, 85% 100%, 0% 100%); /* Beveled edges */
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.0) 50%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity var(--transition-speed) var(--transition-ease);
    z-index: 1;
}

.btn:hover {
    transform: scale(1.05); /* Hover scale animation */
    box-shadow: var(--shadow-button-hover);
    background: linear-gradient(45deg, var(--color-primary) 0%, #FF4500 100%); /* Strong linear gradient on hover */
    color: #FFF; /* Ensure text is white on hover */
}

.btn:hover:before {
    opacity: 1;
}

.btn-secondary {
    background-color: var(--color-secondary);
    box-shadow: var(--shadow-button-inner);
}

.btn-secondary:hover {
    background: linear-gradient(45deg, var(--color-secondary) 0%, #1E90FF 100%);
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.6);
}

/* Footer Style */
footer {
    background-color: var(--color-footer-bg);
    color: var(--color-text-light);
    padding: var(--spacing-lg) 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer .social-icons a {
    display: inline-block;
    margin: 0 0.75rem;
    font-size: 1.5rem;
    color: var(--color-text-light);
    transition: transform var(--transition-speed) var(--transition-ease), color var(--transition-speed) var(--transition-ease);
}

footer .social-icons a:hover {
    transform: translateY(-3px) scale(1.1);
    color: var(--color-primary); /* Use primary color for hover */
}

footer .social-icons a:nth-child(2n) { /* Alternate color for social icons */
    color: var(--color-secondary);
}

footer .social-icons a:nth-child(2n):hover {
    color: var(--color-primary);
}

/* Hero Section Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

/* Dynamic Hero Text (Conceptual, would need JS for full parallax) */
.hero-text-container {
    position: relative;
    z-index: 2;
    /* Styles for text positioning */
}

/* Subtle background texture (example, might use an SVG or generated pattern) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><pattern id="pattern-pixels" x="0" y="0" width="4" height="4" patternUnits="userSpaceOnUse"><rect x="0" y="0" width="1" height="1" fill="%23222" /><rect x="2" y="2" width="1" height="1" fill="%23222" /></pattern><rect x="0" y="0" width="100%" height="100%" fill="url(%23pattern-pixels)" /></svg>') repeat;
    opacity: 0.1; /* Subtle dark geometric patterns */
    z-index: -1;
    pointer-events: none;
}

/* Animations (Placeholder for JS-triggered animations) */
/* Smooth fade-in on scroll (would require Intersection Observer API in JS) */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--transition-ease), transform 0.6s var(--transition-ease);
}

.fade-in.is-visible { /* Class added by JS when element is in view */
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    h1 {
        font-size: 3.5rem;
    }
    h2 {
        font-size: 2.5rem;
    }
    h3 {
        font-size: 2rem;
    }
    p {
        font-size: 1rem;
    }
    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.75rem;
    }
    .btn {
        padding: 0.7rem 1.8rem;
    }
    footer .social-icons a {
        font-size: 1.2rem;
        margin: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.75rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    p {
        font-size: 0.95rem;
    }
    .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
}


/* Cookie Banner Additional Styles for Tailwind */
.cookie-banner-hover-effect:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (prefers-reduced-motion: reduce) {
    .cookie-banner-hover-effect:hover {
        transform: none;
    }
}