/* iOS 26 Liquid Glass Effect */
:root {
    --glass-bg: rgba(0, 0, 0, 0.4);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(20px) saturate(180%);
    --ios-text: rgba(255, 255, 255, 0.9);
    --ios-text-dim: rgba(255, 255, 255, 0.6);
}

/* Nav Bar (Header) */
.header.default, 
.header.switched-header {
    background-color: var(--glass-bg) !important;
    backdrop-filter: var(--glass-blur) !important;
    -webkit-backdrop-filter: var(--glass-blur) !important;
    border-bottom: 1px solid var(--glass-border) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    /* padding: 1rem 0 !important; */
}

.header .logo h2,
.header.switched-header .logo h2 {
    color: #fff !important;
    font-weight: 700 !important;
    letter-spacing: -0.5px !important;
}

.main-nav ul li a,
.header.switched-header .main-nav li a {
    color: var(--ios-text-dim) !important;
    font-weight: 500 !important;
    transition: color 0.3s ease !important;
}

.main-nav ul li a:hover,
.header.switched-header .main-nav li a:hover {
    color: #fff !important;
}

/* Footer */
.footer {
    background-color: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(30px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(30px) saturate(200%) !important;
    border-top: 1px solid var(--glass-border) !important;
    padding: 5rem 0 !important;
    color: var(--ios-text-dim) !important;
}

.footer small, 
.footer small span {
    color: var(--ios-text-dim) !important;
    opacity: 1 !important;
}

.footer .list-inline-item a {
    color: var(--ios-text-dim) !important;
    transition: all 0.3s ease !important;
}

.footer .list-inline-item a:hover {
    color: #fff !important;
}

.footer .list-inline-item {
    margin: 0 15px !important;
}

.footer .list-inline-item:not(:first-child):after {
    content: "•" !important;
    color: rgba(255, 255, 255, 0.2) !important;
    left: -20px !important;
}

/* Liquid Background (Optional but adds to the theme) */
.liquid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    filter: blur(100px);
    background: #000;
}

.blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #007AFF 0%, #5856D6 50%, #FF2D55 100%);
    border-radius: 50%;
    opacity: 0.25;
    animation: move-blobs 30s infinite alternate ease-in-out;
}

.blob:nth-child(2) {
    top: 50%;
    left: 50%;
    background: linear-gradient(135deg, #5AC8FA 0%, #4CD964 100%);
    animation-delay: -7s;
}

@keyframes move-blobs {
    0% { transform: translate(-30%, -30%) rotate(0deg); }
    100% { transform: translate(30%, 30%) rotate(360deg); }
}
