﻿/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
/* ===============================
   GLOBAL SITE STYLES (ALL PAGES)
   =============================== */

body {
    background-color: #0d0d0d;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ----- NAVBAR ----- */
.navbar {
    background-color: #000000;
    border: none;
}

.navbar-brand {
    font-weight: 800;
    letter-spacing: 1px;
    color: #ff4fd8 !important; /* ITZY pink */
}

.navbar-nav > li > a {
    color: #ffffff !important;
    font-weight: 600;
}

.navbar-nav > li > a:hover {
    color: #ff4fd8 !important;
}

/* ----- BUTTONS (GLOBAL) ----- */
.btn-primary {
    background-color: #ff4fd8;
    border-color: #ff4fd8;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #e645c3;
    border-color: #e645c3;
}


/* ===== FOOTER ===== */
.site-footer {
    margin-top: 40px;
    padding: 20px 0;
    background: #000;
    text-align: center;
    font-size: 14px;
    opacity: .95;
}

/* Social icons */
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 10px;
}

.footer-socials a {
    color: #fff !important;
    text-decoration: none !important;
    font-size: 22px;
    line-height: 1;
}

.footer-socials a i {
    color: inherit !important;
    }

.footer-socials a:hover {
    color: #ff4fd8 !important;
    transform: scale(1.15);
}

.footer-socials a {
    transition: color .25s ease, transform .2s ease;
}


/* Navbar layout fix */
.navbar .navbar-collapse {
    display: flex;
    align-items: center;
}

.navbar .navbar-nav {
    margin-left: auto; /* PUSHES menu to the right */
    display: flex;
    float: none !important; /* override Bootstrap */
}

/* Space between Home & Merch */
.itzy-nav > li {
    margin-left: 28px;
}

.itzy-nav {
    gap: 28px; /* space between items */
}

/* Tighten login modal spacing */
.itzy-modal-header {
    background: #fff !important; /* force white header */
    display: flex;
    align-items: center; /* vertical center */
    justify-content: center; /* horizontal center */
}

.itzy-modal-body {
    padding: 10px 24px 22px; /* less top padding, decent sides */
}

/* Optional: make the modal a bit wider like your screenshot */
.itzy-modal {
    border-radius: 14px;
}

.itzy-modal-title {
    color: #000 !important; /* force visible text */
    text-transform: uppercase;
}