html {
    scroll-behavior: smooth;
}
body {
    overflow-x: hidden;
    background-color: #FDF9E8;
    color: #333;
}

.parallax-bg {
    background-attachment: fixed;
    background-position: center 45px;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 768px) {
    .parallax-bg {
        background-attachment: scroll !important;
        background-position: center top !important;
    }
}

#progress-bar {
    position: fixed;
    top: 45px;
    left: 0;
    height: 4px;
    background: linear-gradient(to right, #C5A059, #10B981);
    width: 0%;
    z-index: 100000;
    transition: width 0.1s;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease-out;
}
.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease-out;
}
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

.drop-cap::first-letter {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    float: left;
    line-height: 1;
    margin-right: 0.5rem;
    color: #C5A059;
    font-weight: bold;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

@keyframes bounce-subtle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}
.animate-bounce-subtle {
    animation: bounce-subtle 2s infinite;
}

.sp-sticky-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100%;
    height: 45px !important;
    background-color: #000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    z-index: 99999 !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5) !important;
    font-family: Arial, sans-serif !important;
}

.left-group, .right-group {
    display: flex;
    align-items: center;
    height: 100%;
}

.sp-back-to-soha-new {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #007f74;
    color: white;
    font-size: 18px;
    cursor: pointer;
}
.sp-back-to-soha-new:hover {
    background-color: #00665d;
}

.emg-icon-svg {
    fill: currentColor;
    width: 20px;
    height: 20px;
}

.sp-mag-logo-new {
    margin-left: 15px;
    display: flex;
    align-items: center;
}
.sp-mag-logo-new img {
    height: 24px;
    width: auto;
    display: block;
}

.center-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.center-logo img {
    height: 26px;
    width: auto;
    display: block;
}

.mobile-emag-logo {
    display: none;
    height: 24px;
    width: auto;
    margin-right: 15px;
}

.fb-custom-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    color: white;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0.9;
    margin-right: 15px;
}
.fb-custom-btn:hover {
    opacity: 1;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .center-logo,
    .fb-custom-btn {
        display: none !important;
    }
    .mobile-emag-logo {
        display: block !important;
    }
}