/* PRELOADER */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1A0705; /* Darker Maroon */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
}

.preloader-content {
    text-align: center;
    padding: 20px;
}

.loader-logo {
    width: clamp(200px, 40vw, 350px);
    height: auto;
    margin-bottom: 30px;
}

.progress-container {
    width: 180px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(191, 161, 74, 0.3);
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #D4AF37, #BFA14A); /* Premium Gold */
    box-shadow: 0 0 12px rgba(191, 161, 74, 0.6);
    transition: width 0.1s linear;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.03); opacity: 1; }
    100% { transform: scale(1); opacity: 0.9; }
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* GLOBAL RESPONSIVE FIXES */
html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevents horizontal scroll */
    position: relative;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}
