:root { --gold: #c5a065; --bg: #050a08; --ivory: #f2f0e6; }
.container{
  width: 1024px;
  margin: auto;
  display: flex;
  align-items: center;
  gap:10px;
}
.left {
  margin-right: auto;
}
.center {
  margin: 0 auto;
}
.right {
  margin-left: auto;
}
@media only screen and (max-width: 600px) {
  .container{
    display: block;
    width: 100%;
  }
  .left, .right, .center {
    margin: 0;
    margin-bottom: 20px;
  }
}
/* Kopyalama ve Seçme Engelleme */
* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    outline: none !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    -webkit-touch-callout: none !important;
}

button:not(.profile-dropdown):not(.profile-dropdown *), a:not(.profile-dropdown):not(.profile-dropdown *), [role="button"]:not(.profile-dropdown):not(.profile-dropdown *), .interactive {
    pointer-events: auto !important;
    cursor: pointer;
}

img, .protected-media {
    pointer-events: none !important;
    -webkit-user-drag: none !important;
}

body {
    background-color: var(--bg);
    color: var(--ivory);
    font-family: 'Manrope', sans-serif;
    margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    padding: 20px 0 20px 0;
}
body.loaded { opacity: 1; }

.font-lux { font-family: 'Cinzel', serif; }

.gold-txt {
    background: linear-gradient(135deg, #e8dcb5 0%, #c5a065 50%, #8c6b3d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-gradient {
  position: relative;
  top:-120px;
  width: 100%;
    background: radial-gradient(circle at 50% -20%, rgba(197, 160, 101, 0.18) 0%, transparent 60%),
                radial-gradient(circle at 0% 100%, rgba(197, 160, 101, 0.05) 0%, transparent 40%);
}
@media (max-width: 1023px) {
  .slogan{
    margin-top:50px;
  }
}

.btn-premium {
    position: relative;
    background: linear-gradient(135deg, #c5a065 0%, #8c6b3d 100%);
    color: #050a08;
    font-weight: 800;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateZ(0);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-premium:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(197, 160, 101, 0.35);
}

.btn-premium::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.6s;
}

.btn-premium:hover::after {
    left: 100%;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobil Parlama Efekti */
@media (max-width: 1023px) {
    .active-in-view {
        border-color: rgba(197, 160, 101, 0.5) !important;
        box-shadow: 0 0 25px rgba(197, 160, 101, 0.15);
        transform: scale(1.02);
    }
    .active-in-view .icon-box {
        background: rgba(197, 160, 101, 0.15) !important;
        transform: scale(1.1);
    }
    .active-in-view .icon-svg {
        filter: brightness(1.3);
    }
}

/* Vizyon Modal - Perşömen Stilleri */
.parchment-bg {
    background: #fdf5e6;
    background-image: radial-gradient(circle, #fdf5e6 0%, #f4e4bc 100%);
    border: 2px solid #c5a065;
    box-shadow: 0 0 50px rgba(0,0,0,0.8), inset 0 0 100px rgba(197, 160, 101, 0.1);
    position: relative;
    transform-origin: center;
}

.parchment-bg::before, .parchment-bg::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 10px;
    left: 0;
    background: linear-gradient(90deg, transparent, #c5a065, transparent);
    opacity: 0.3;
}
.parchment-bg::before { top: 15px; }
.parchment-bg::after { bottom: 15px; }

.noise-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyBAMAAADsEZWCAAAAGFBMVEUAAAAAAAACAgIHBwcKCgoODg4TExMYGBgdHR3r6+s1AAAACHRSTlMAMwA1MzMzM7O0s14AAABPAURBVDjLzZJBDgAhCAP5/0fd9KB72W1j5wmDBMwR5rW19Xs/24+5+95+rn3f7s/W2vf1c+37dn+21r6vn2vft/uztfa9/Vz7vt2frbXv6+f6ARlYW0+/2173AAAAAElFTkSuQmCC');
    opacity: 0.04;
    pointer-events: none;
}

@keyframes subtle-zoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}
.animate-zoom { animation: subtle-zoom 25s infinite alternate ease-in-out; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-open { overflow: hidden; }
#visionModal.hidden { display: none; }
#visionModal { animation: fadeIn 0.3s ease-out; }
#visionModal .parchment-bg { animation: scaleIn 0.4s cubic-bezier(0.23, 1, 0.32, 1); }
