/* Beyaz Kartallar - Home Page Styles */

/* General Padding & Helper Classes */
.section-padding {
    padding: 60px 0;
}

.bg-alt {
    background-color: #f9f9f9;
}

/* Contact Section & Form */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--secondary-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.alert.success {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
}

.alert.error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    font-family: inherit;
}

.form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    font-family: inherit;
    resize: vertical;
}

.margin-bottom-20 {
    margin-bottom: 20px;
}

.submit-btn {
    background: var(--primary-dark);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.submit-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Forum & Community Grid */
.forum-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.forum-card-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary-color);
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.forum-card-mini:hover {
    transform: translateY(-3px);
}

.topic-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.topic-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.topic-info {
    min-width: 0;
}

.topic-title {
    margin: 0;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text-color);
}

.topic-meta {
    font-size: 0.75rem;
    color: #888;
}

.no-topics {
    grid-column: 1/-1;
    background: var(--secondary-color);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.no-topics p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

/* Honeypot */
.honeypot-container {
    display: none;
    opacity: 0;
    visibility: hidden;
}

/* Fleet Card Image */
.fleet-card-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Popup Animation */
@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}