/* Custom Variables */
:root {
    --primary-red: #ff002b;
    --dark-bg: #0a0a0a;
}

body {
    background-color: var(--dark-bg);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}
.navbar {
    background: rgba(10, 10, 10, 0.8) !important;
    backdrop-filter: blur(10px); /* Glassmorphism effect */
    transition: 0.3s;
}
/* Custom Input Styling */
.custom-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    padding: 12px 20px;
    transition: 0.3s;
}

.custom-input:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--primary-red) !important;
    box-shadow: 0 0 15px rgba(255, 0, 43, 0.2);
    outline: none;
}

/* Placeholder color */
.custom-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}


.newsletter-capsule {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.newsletter-capsule:focus-within {
    border-color: var(--primary-red);
    box-shadow: 0 0 15px rgba(255, 0, 43, 0.2);
}

.newsletter-capsule input:focus {
    box-shadow: none;
    color: white;
}

/* Footer Links & Socials */
.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.social-icons a {
    color: white;
    font-size: 1.2rem;
    opacity: 0.6;
    transition: 0.3s;
}

.social-icons a:hover {
    opacity: 1;
    color: var(--primary-red);
    transform: translateY(-3px);
    display: inline-block;
}

.tracking-widest {
    letter-spacing: 4px;
}
