/* Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0f0f13;
    color: #ffffff;
    line-height: 1.6;
}

/* Üst Menü (Navbar) */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: rgba(15, 15, 19, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #222;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.logo-info {
    margin-left: 12px;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.top-social-links {
    margin-top: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.top-social-links a {
    font-size: 11px;
    text-decoration: none;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 3px;
    transition: opacity 0.2s ease;
}

.top-social-links a:hover {
    opacity: 0.8;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

.btn-nav {
    background-color: #e94560;
    padding: 8px 20px;
    border-radius: 20px;
    color: #fff !important;
    font-weight: 600;
}

/* Hero Alanı (Karşılama) */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    background: radial-gradient(circle at center, #1a1a24 0%, #0f0f13 100%);
    margin-top: 50px;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: #e94560;
}

.hero-content p {
    font-size: 18px;
    color: #aaa;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s, background-color 0.3s, border-color 0.3s;
}

.btn-primary {
    background-color: #e94560;
    color: #fff;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

.btn-primary:hover {
    background-color: #d13d56;
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #555;
}

.btn-secondary:hover {
    border-color: #fff;
    transform: translateY(-3px);
}

/* Portfolyo / Hit Şarkılar Alanı */
.portfolio-section {
    padding: 100px 5%;
    background-color: #0a0a0d;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.section-title p {
    color: #aaa;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.audio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.audio-card {
    background-color: #1a1a24;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #222;
    transition: transform 0.3s, border-color 0.3s;
}

.audio-card:hover {
    transform: translateY(-5px);
    border-color: #e94560;
}

.hit-card {
    border: 1px solid #e94560 !important;
    position: relative;
}

.hit-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #e94560;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 10px;
}

.card-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.card-info p {
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;
}

audio {
    width: 100%;
    outline: none;
    margin-top: 10px;
}

audio::-webkit-media-controls-panel {
    background-color: #2a2a35;
}

.card-footer-links {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #222;
    padding-top: 12px;
}

.tiktok-btn, .youtube-btn {
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: opacity 0.2s;
}

.tiktok-btn {
    color: #00f2ea;
}

.youtube-btn {
    color: #ff0000;
}

.tiktok-btn:hover, .youtube-btn:hover {
    opacity: 0.8;
}

/* Sipariş Alanı */
.order-section {
    padding: 100px 5%;
    background: linear-gradient(180deg, #0a0a0d 0%, #0f0f13 100%);
}

.order-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #1a1a24;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid #222;
}

.package-details {
    flex: 1;
    padding: 50px;
    background-color: #15151e;
    border-right: 1px solid #222;
}

.package-details h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.price {
    font-size: 42px;
    font-weight: 700;
    color: #e94560;
    margin-bottom: 30px;
}

.features {
    list-style: none;
    margin-bottom: 30px;
}

.features li {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.order-form-container {
    flex: 1.5;
    padding: 50px;
}

.order-form-container h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-form input, 
.order-form select, 
.order-form textarea {
    width: 100%;
    padding: 15px;
    background-color: #0f0f13;
    border: 1px solid #333;
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s;
}

.order-form input:focus, 
.order-form select:focus, 
.order-form textarea:focus {
    border-color: #e94560;
}

.btn-submit {
    background-color: #e94560;
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #d13d56;
}

/* Nasıl Çalışır Alanı */
.how-it-works-section {
    padding: 80px 5%;
    background-color: #0f0f13;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step-box {
    background-color: #1a1a24;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    border: 1px solid #222;
    transition: transform 0.3s;
}

.step-box:hover {
    transform: translateY(-5px);
    border-color: #e94560;
}

.step-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step-box p {
    color: #888;
    font-size: 14px;
}

/* Footer */
.footer {
    background-color: #0a0a0d;
    padding: 40px 5%;
    text-align: center;
    border-top: 1px solid #222;
}

.footer h2 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
}

.footer p {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

/* Mobil Uyumluluk */
@media (max-width: 900px) {
    .order-container {
        flex-direction: column;
    }
    .package-details {
        border-right: none;
        border-bottom: 1px solid #222;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Sabit WhatsApp Destek Butonu */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
}