.contact-page {
    flex: 1;
    background: #000;
    display: flex;
    justify-content: center;
    padding: 120px 20px 80px 20px;
}

.contact-card {
    width: 100%;
    max-width: 1000px;
    padding: 80px 40px;
    background: #000;
    color: #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 2px solid #ef4444;
    border-radius: 15px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-card:hover {
    border-color: #ff4d4d;
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.4);
}

.contact-title {
    font-family: 'EB Garamond', serif;
    font-size: 58px; /* Μεγαλύτερος τίτλος */
    color: #ef4444;
    margin-bottom: 30px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.contact-intro {
    font-family: 'EB Garamond', serif;
    font-size: 26px; /* Μεγαλύτερο κείμενο όπως στο About */
    font-style: italic;
    max-width: 800px;
    line-height: 1.6;
    color: #d1d5db;
    margin-bottom: 60px;
}

.contact-methods {
    width: 100%;
    max-width: 700px;
}

.label {
    display: block;
    font-family: 'EB Garamond', serif;
    font-size: 18px;
    text-transform: uppercase;
    color: #ef4444;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.email-address {
    font-size: 38px; /* Επιβλητικό email */
    color: #fff;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(239, 68, 68, 0.5);
    padding-bottom: 10px;
    display: inline-block;
    font-family: 'EB Garamond', serif;
}

/* Press Kit Styling */
.press-kit-placeholder {
    margin-bottom: 60px;
    padding: 30px;
    border: 1px dashed rgba(239, 68, 68, 0.3);
    border-radius: 10px;
}

.press-kit-text {
    font-size: 18px;
    margin-bottom: 20px;
    color: #9ca3af;
}

.press-kit-btn-fake {
    display: inline-block;
    padding: 12px 25px;
    border: 1px solid #ef4444;
    color: #ef4444;
    text-transform: uppercase;
    font-family: 'EB Garamond', serif;
    font-size: 18px;
    letter-spacing: 2px;
    opacity: 0.6;
    cursor: default;
}

.social-icons-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
}

.social-icons-grid img {
    width: 36px;
    height: 36px;
    opacity: 0.7;
    transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
}

.social-icons-grid img:hover {
    opacity: 1;
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px #ef4444);
}

.contact-legal-info {
    margin-top: 80px;
    font-size: 16px;
    color: #6b7280;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-title { font-size: 42px; }
    .contact-intro { font-size: 22px; }
    .email-address { font-size: 26px; }
    .contact-card { padding: 50px 20px; }
}