/* İletişim Sayfası CSS - Ana sayfa ile aynı tasarım */

.contact-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.contact-info {
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.1) 0%, rgba(30, 30, 30, 0.8) 50%, rgba(20, 20, 20, 0.9) 100%);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 111, 0, 0.2);
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 111, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--highlight-color), #ff9e42, var(--highlight-color));
    border-radius: 20px 20px 0 0;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--highlight-color);
    text-shadow: 0 0 10px rgba(255, 111, 0, 0.3);
    text-align: center;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 111, 0, 0.1);
    box-shadow: 0 8px 25px rgba(255, 111, 0, 0.2);
    border-color: var(--highlight-color);
}

.contact-item i {
    font-size: 24px;
    color: var(--highlight-color);
    margin-right: 15px;
    width: 30px;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 111, 0, 0.5);
}

.contact-item span {
    font-size: 1rem;
    color: white;
    font-weight: 500;
}

.contact-form-container {
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.1) 0%, rgba(30, 30, 30, 0.8) 50%, rgba(20, 20, 20, 0.9) 100%);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 111, 0, 0.2);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 111, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--highlight-color), #ff9e42, var(--highlight-color));
    border-radius: 20px 20px 0 0;
}

.contact-form-container:hover {
    box-shadow: 0 20px 60px rgba(255, 111, 0, 0.3), 0 0 40px rgba(255, 111, 0, 0.2);
    border-color: rgba(255, 111, 0, 0.4);
}

.contact-form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--highlight-color);
    text-shadow: 0 0 10px rgba(255, 111, 0, 0.3);
    text-align: center;
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    color: white;
    opacity: 0.9;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px 18px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--highlight-color);
    box-shadow: 0 0 0 2px rgba(255, 111, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--button-background);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin: 20px auto 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.5);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    max-width: 200px;
    width: 100%;
    font-size: 16px;
}

.submit-button i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.submit-button:hover {
    background: var(--button-hover-background);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 111, 0, 0.7);
}

.submit-button:hover i {
    transform: translateX(5px);
}

.social-media-container {
    margin-top: 30px;
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.1) 0%, rgba(30, 30, 30, 0.8) 50%, rgba(20, 20, 20, 0.9) 100%);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 111, 0, 0.2);
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 111, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.social-media-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--highlight-color), #ff9e42, var(--highlight-color));
    border-radius: 20px 20px 0 0;
}

.social-media-container h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--highlight-color);
    text-shadow: 0 0 10px rgba(255, 111, 0, 0.3);
    text-align: center;
    font-weight: 600;
}

.social-media-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.social-media-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 160px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-media-link i {
    margin-right: 10px;
    font-size: 18px;
}

.social-media-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Sosyal medya butonlarının renklerini koruyoruz */
.social-media-link.youtube { 
    background: #ff0000; 
    border-color: #ff0000;
}

.social-media-link.twitter { 
    background: #1da1f2; 
    border-color: #1da1f2;
}

.social-media-link.discord { 
    background: #5865f2; 
    border-color: #5865f2;
}

.social-media-link.instagram { 
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); 
    border-color: #dc2743;
}

.social-media-link.spotify { 
    background: #1db954; 
    border-color: #1db954;
}

/* Animasyonları iletişim öğelerine ekliyoruz */
.contact-item, .form-group, .social-media-link {
    animation: fadeIn 0.5s ease-in-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Animasyon gecikmeleri */
.contact-item:nth-child(1) { animation-delay: 0.1s; }
.contact-item:nth-child(2) { animation-delay: 0.2s; }
.contact-item:nth-child(3) { animation-delay: 0.3s; }
.contact-item:nth-child(4) { animation-delay: 0.4s; }

.form-group:nth-child(1) { animation-delay: 0.5s; }
.form-group:nth-child(2) { animation-delay: 0.6s; }
.form-group:nth-child(3) { animation-delay: 0.7s; }
.form-group:nth-child(4) { animation-delay: 0.8s; }
.submit-button { animation-delay: 0.9s; animation: fadeIn 0.5s ease-in-out 0.9s forwards; opacity: 0; }

.social-media-link:nth-child(1) { animation-delay: 1.0s; }
.social-media-link:nth-child(2) { animation-delay: 1.1s; }
.social-media-link:nth-child(3) { animation-delay: 1.2s; }
.social-media-link:nth-child(4) { animation-delay: 1.3s; }
.social-media-link:nth-child(5) { animation-delay: 1.4s; }

/* Aktif buton stilini ekliyoruz */
.sidebar-button.active {
    background: rgba(255, 111, 0, 0.2);
    transform: translateY(-5px);
    border-color: var(--highlight-color);
    box-shadow: 0 0 15px rgba(255, 111, 0, 0.5);
}

.sidebar-button.active i {
    transform: scale(1.2);
    text-shadow: 0 0 10px var(--highlight-color);
}

.sidebar-button.active span {
    font-weight: bold;
    text-shadow: 0 0 5px var(--highlight-color);
}

.sidebar-button.active .neon-border {
    border-color: var(--highlight-color);
    box-shadow: inset 0 0 10px var(--highlight-color),
                0 0 10px var(--highlight-color);
}

/* Responsive tasarım */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-info, .contact-form-container, .social-media-container {
        padding: 25px;
    }
    
    .social-media-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-media-link {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 20px 10px;
    }
    
    .contact-info, .contact-form-container, .social-media-container {
        padding: 20px;
    }
    
    .contact-item {
        padding: 15px;
    }
    
    .contact-item i {
        font-size: 20px;
    }
    
    .contact-item span {
        font-size: 0.9rem;
    }
}

/* Form gönderme başarılı animasyonu */
@keyframes formSuccess {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.form-success {
    border-color: #4CAF50 !important;
    animation: formSuccess 0.5s ease;
}

/* Özel gece modu animasyonu */
.night-stars {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    box-shadow: 0 0 10px 1px rgba(255, 255, 255, 0.9);
    background: transparent;
    z-index: 0;
    opacity: 0.7;
    animation: twinkle 5s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 0.3; }
}

/* Formu gönderme düğmesi üzerine hover olduğunda parlaklık efekti */
.submit-button:hover {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Titreşme animasyonu - formlara odaklanıldığında */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.form-error {
    animation: shake 0.5s ease;
    border-color: #ff3860 !important;
}

/* Fare Hareketleri */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overscroll-behavior-y: contain;
}