* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #030202;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    color: #ece6df;
}

.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 40%, #1a1308 0%, #020101 100%);
    z-index: -2;
}

.gold-dust {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(196, 167, 125, 0.15) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: -1;
}

.site-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px 20px;
    position: relative;
    z-index: 2;
}

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 80px;
}

/* Logo ve menüler */
.logo-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    background: rgba(20, 18, 16, 0.5);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 60px;
    border: 1px solid rgba(196, 167, 125, 0.3);
}

.menu-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: #ddd2c0;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    position: relative;
}

.menu-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #C4A77D;
    transition: width 0.3s;
}

.menu-item:hover {
    color: #C4A77D;
}

.menu-item:hover::after {
    width: 100%;
}

.logo-super {
    position: relative;
    margin: 0 auto;
}

.logo-golden {
    max-width: 320px;
    width: 85%;
    height: auto;
    filter: drop-shadow(0 0 25px rgba(196, 167, 125, 0.4));
    transition: all 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.logo-golden:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 0 40px rgba(196, 167, 125, 0.7));
}

.logo-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110%;
    height: 120%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(196, 167, 125, 0.2) 0%, transparent 80%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

/* Logo ile video arasındaki metin */
.feature-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin: 20px 0 30px;
    padding: 12px 24px;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(8px);
    border-radius: 60px;
    border: 1px solid rgba(196, 167, 125, 0.25);
    max-width: 80%;
}

.line-left, .line-right {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #C4A77D);
}

.line-right {
    background: linear-gradient(90deg, #C4A77D, transparent);
}

.feature-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #F5EFE6;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Video */
.video-luxury {
    width: 100%;
    max-width: 700px;
    margin: 20px auto 40px;
}

.video-container-gold {
    position: relative;
    border-radius: 28px;
    background: linear-gradient(145deg, #b6945e, #7a5a3a);
    padding: 4px;
    box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(196, 167, 125, 0.3);
}

.premium-video {
    width: 100%;
    border-radius: 24px;
    display: block;
    background-color: #000;
}

.video-glow-border {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 32px;
    background: linear-gradient(125deg, #C4A77D, transparent 40%, transparent 60%, #C4A77D);
    z-index: -1;
    opacity: 0.7;
    filter: blur(2px);
}

/* Hero tagline (yeni konumu: videodan hemen sonra) */
.hero-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin: 30px 0 40px;
}

.divider {
    width: 70px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #C4A77D, #C4A77D, transparent);
}

.hero-tagline h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: #ddd2c0;
    text-transform: uppercase;
}

.gold-text {
    color: #d4af6a;
    font-weight: 600;
}

/* Bilgi Kartı (yeni konumu: tagline'dan sonra) */
.info-card {
    background: rgba(12, 10, 8, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(196, 167, 125, 0.4);
    border-radius: 32px;
    padding: 32px 40px;
    max-width: 850px;
    margin: 20px auto 50px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px -15px rgba(0,0,0,0.5);
}

.info-card:hover {
    border-color: rgba(196, 167, 125, 0.8);
    transform: translateY(-5px);
    background: rgba(12, 10, 8, 0.85);
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.6);
}

.info-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #F2E8DA;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.info-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C4A77D, #C4A77D, transparent);
    margin: 0 auto 25px auto;
}

.info-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #DDD2C0;
    font-weight: 300;
    margin-bottom: 25px;
}

.info-cta {
    margin-top: 15px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #C4A77D;
    text-transform: uppercase;
    font-weight: 400;
    border-top: 1px dashed rgba(196, 167, 125, 0.3);
    padding-top: 20px;
    display: inline-block;
}

/* Footer */
footer {
    margin-top: 70px;
    border-top: 1px solid rgba(196, 167, 125, 0.2);
    padding: 30px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-content p {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #8f846f;
}

.social-links a {
    color: #bfb5a2;
    margin-left: 20px;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #d4af6a;
}

/* Responsive */
@media (max-width: 1000px) {
    .site-wrapper {
        padding: 20px 24px;
    }
    .logo-row {
        flex-direction: column;
    }
    .nav-menu {
        width: 100%;
        justify-content: center;
    }
    .feature-text p {
        white-space: normal;
        font-size: 0.9rem;
    }
    .feature-text {
        max-width: 95%;
        padding: 10px 20px;
    }
    .hero-tagline h2 {
        font-size: 1.1rem;
    }
}

@media (max-width: 700px) {
    .logo-golden {
        max-width: 240px;
    }
    .nav-menu {
        gap: 15px;
        padding: 8px 16px;
    }
    .menu-item {
        font-size: 0.7rem;
    }
    .feature-text {
        gap: 10px;
    }
    .line-left, .line-right {
        width: 20px;
    }
    .info-card {
        padding: 24px 20px;
        margin: 30px 20px;
    }
    .info-title {
        font-size: 1.4rem;
    }
    .info-text {
        font-size: 0.9rem;
    }
}
/* ===== ÜCRETSİZ DEMO BUTONU ===== */
.demo-button {
    margin: 35px 0 25px;
}

.btn-demo {
    display: inline-block;
    background: linear-gradient(135deg, rgba(242, 217, 139, 0.2), rgba(220, 190, 110, 0.1));
    border: 2px solid #F2D98B;
    color: #F9EEC1;
    padding: 18px 42px;
    border-radius: 60px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.btn-demo:hover {
    background: #F2D98B;
    color: #0A0A0A;
    border-color: #F2D98B;
    box-shadow: 0 0 20px rgba(242, 217, 139, 0.6);
    transform: scale(1.02);
}