@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Montserrat:wght@300;400;600;800&display=swap');

:root {
    --gold-primary: #D4AF37;
    --gold-light: #F7E7CE;
    --gold-dark: #AA6C39;
    --purple-primary: #6200ea; 
    --purple-dark: #3700b3;   
    --purple-light: #b388ff;   
    
    --black-rich: #0a0a0a;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black-rich);
    color: #f3f3f3;
    margin: 0; padding: 0; overflow-x: hidden;
}

.brand-font { font-family: 'Cinzel', serif; }
.fade-in-page { opacity: 0; animation: fadeIn 1s forwards; }
@keyframes fadeIn { to { opacity: 1; } }

.loader-wrapper {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--black-rich); z-index: 9999;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.static-logo {
    width: 100px; height: 100px; border: 2px solid var(--gold-primary); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: pulse-gold 3s ease-in-out infinite;
}
.logo-inner { font-family: 'Cinzel', serif; font-size: 40px; color: var(--gold-primary); font-weight: bold; }
@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 10px var(--gold-dark), inset 0 0 10px rgba(212, 175, 55, 0.1); transform: scale(1); }
    50% { box-shadow: 0 0 30px var(--gold-primary), inset 0 0 20px rgba(212, 175, 55, 0.3); transform: scale(1.05); }
}
#selection-screen {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    display: none; opacity: 0;
}
.split-pane {
    position: relative; height: 100%; transition: width 0.5s ease;
    cursor: pointer; overflow: hidden;
}
.split-pane::before {
    content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.6);
    transition: background 0.4s; z-index: 10;
}
.split-pane:hover::before { background: rgba(0,0,0,0.3); }
.split-pane img { transition: transform 0.8s ease; width: 100%; height: 100%; object-fit: cover; }
.split-pane:hover img { transform: scale(1.1); }
.pane-content {
    position: absolute; z-index: 20; top: 50%; left: 50%;
    transform: translate(-50%, -50%); text-align: center; width: 100%;
}
.icon-circle {
    width: 100px; height: 100px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; transition: transform 0.3s;
    overflow: hidden; 
    background: rgba(255,255,255,0.05);
}
.icon-circle img { background: #ffffff; border-radius: 100%; padding: 5px;}
.split-pane:hover .icon-circle { transform: scale(1.1); }

.selection-btn {
    margin-top: 20px; padding: 10px 30px;
    border: 1px solid rgba(255,255,255,0.5); border-radius: 30px;
    color: white; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 2px;
    transition: all 0.3s; background: transparent;
}
.split-pane:hover .selection-btn { background: white; color: black; border-color: white; }
.center-floating-action {
    position: absolute; bottom: 8%; left: 50%;
    transform: translateX(-50%); z-index: 50;
    text-align: center; width: 100%;
}
.btn-glass-center {
    display: inline-block; padding: 15px 40px;
    background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3); color: white;
    font-family: 'Cinzel', serif; font-weight: 700; letter-spacing: 1px;
    border-radius: 50px; transition: all 0.4s ease; text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.btn-glass-center:hover {
    background: white; color: black;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}
.text-gradient-gold {
    background: linear-gradient(to right, var(--gold-dark), var(--gold-primary), var(--gold-light), var(--gold-primary));
    -webkit-background-clip: text; background-clip: text; color: transparent; background-size: 200% auto; animation: shine 5s linear infinite;
}
.btn-gold { background: var(--gold-primary); color: black; font-weight: bold; transition: 0.3s; }
.btn-gold:hover { box-shadow: 0 0 20px rgba(212, 175, 55, 0.5); transform: scale(1.05); }
.border-gold { border-color: var(--gold-primary); }
.text-gold { color: var(--gold-primary); }
.hover-bg-gold:hover { background-color: var(--gold-primary); color: black; }
.text-gradient-purple {
    background: linear-gradient(to right, var(--purple-light), var(--purple-primary));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.btn-purple { background: var(--purple-primary); color: white; font-weight: bold; transition: 0.3s; }
.btn-purple:hover { box-shadow: 0 0 20px rgba(98, 0, 234, 0.5); background: var(--purple-dark); }
.border-purple { border-color: var(--purple-primary); }
.text-purple { color: var(--purple-primary); }
.hover-bg-purple:hover { background-color: var(--purple-primary); color: white; }

@keyframes shine { to { background-position: 200% center; } }
.glass-nav { background: rgba(10, 10, 10, 0.9); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.hero-bg { background-size: cover; background-position: center; background-attachment: fixed; position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.5), var(--black-rich)); }
.testimonial-card {
    background: #111; border: 1px solid #333; padding: 2rem;
    border-radius: 1rem; position: relative; transition: all 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-5px); border-color: var(--gold-primary); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.quote-icon { font-size: 3rem; color: rgba(255,255,255,0.1); position: absolute; top: 1rem; right: 1.5rem; }
.stars { color: var(--gold-primary); font-size: 0.9rem; margin-bottom: 1rem; }


.logofap {background-color: #f3f3f3; border-radius: 100%; padding: 5px;}
#banner {opacity: 0.9;}

#img-slider{
    max-width: 1000px;
}