/*

[Minecraft Plugin Paketi Sitesi - Özel Stiller]

Project: MinecraftPlugins - Premium Minecraft Plugin Paketleri ve Sunucu Çözümleri
Version: 2.0
Author : MinecraftPlugins Team

Minecraft Tema Renkleri:
- Ana Yeşil (Creeper): #4CAF50
- Koyu Yeşil (Grass): #2E7D32
- Altın (Gold Ingot): #FFD700
- Elmas (Diamond): #40E0D0
- Redstone Kırmızısı: #DC143C
- Obsidian Siyahı: #1C1C1C

*/

/* Minecraft Temasına Özel Eklentiler */

/* Promo Banner - Minecraft Temalı */
#promo {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    border-left: 5px solid #FFD700;
}

#promo strong {
    color: #FFD700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Plugin Kategorileri için Gradient Renkler */
.extension {
    background: linear-gradient(45deg, #4CAF50, #2E7D32);
    transition: all 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(76, 175, 80, 0.2);
}

.extension:hover {
    background: linear-gradient(45deg, #FFD700, #FFA000);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

/* Plugin Paket Kartları */
.pricing--content {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.pricing--content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.2);
}

.pt-head {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    position: relative;
}

.pt-head::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
}

/* Premium paket için özel efekt */
.pricing--item:nth-child(2) .pt-head {
    background: linear-gradient(135deg, #FFD700 0%, #FFA000 100%);
    color: #1C1C1C;
}

.pricing--item:nth-child(2) .pt-head::after {
    content: '⭐';
}

/* Elite paket için özel efekt */
.pricing--item:nth-child(3) .pt-head {
    background: linear-gradient(135deg, #40E0D0 0%, #20B2AA 100%);
}

.pricing--item:nth-child(3) .pt-head::after {
    content: '💎';
}

/* Ultimate paket için özel efekt */
.pricing--item:nth-child(4) .pt-head {
    background: linear-gradient(135deg, #DC143C 0%, #B71C1C 100%);
}

.pricing--item:nth-child(4) .pt-head::after {
    content: '👑';
}

/* Feature İkonları için Minecraft Teması */
.feature--icon {
    position: relative;
}

.feature--icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #4CAF50, #2E7D32);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: all 0.3s ease;
}

.feature--item:hover .feature--icon::before {
    background: linear-gradient(45deg, #FFD700, #FFA000);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Counter için Minecraft block efekti */
.counter-holder {
    background: rgba(76, 175, 80, 0.1);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.counter-holder:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
    transform: translateY(-3px);
}

.counter-icon i {
    background: linear-gradient(45deg, #4CAF50, #2E7D32) !important;
    color: white !important;
    border-radius: 10px !important;
}

/* Butonlar için Minecraft teması */
.btn-custom {
    background-color: #8336dcb6; /* A deep purple */
    color: #ffffff; /* White text */
    border: none;
    border-radius: 25px !important;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FFA000 100%);
    color: #1C1C1C;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Submit butonları */
.submit-button-custom {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 12px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.submit-button-custom:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FFA000 100%);
    color: #1C1C1C;
}

/* Navigation için Minecraft efektleri */
.secondary-menu-links li a {
    transition: all 0.3s ease;
    position: relative;
}

.secondary-menu-links li a:hover {
    color: #4CAF50 !important;
}

.secondary-menu-links li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4CAF50, #FFD700);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.secondary-menu-links li a:hover::before {
    width: 100%;
}

/* Banner için pixelated efekt (isteğe bağlı) */
.banner-item-content h1 span {
    background: linear-gradient(45deg, #FFD700, #FFA000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
