/* Contact Page Styling - Looksyy Theme (Whitesmoke bg + Deep bark container) */

body {
    margin: 0;
    background-color: #f5f5f5; /* Whitesmoke background */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2d001f; /* Deep bark text for good contrast */
    scroll-behavior: smooth;
}

.contact-section {
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
}

.contact-box {
    background-color: #2d001f; /* Deep bark container */
    padding: 2.5rem 3rem;
    border-radius: 22px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 0 25px rgba(144, 0, 100, 0.3); /* Plum glow */
    transition: all 0.3s ease-in-out;
    color: #f5e6f7; /* Light text for contrast inside container */
}

.contact-box:hover {
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.4);
}

.contact-box h1 {
    color: #ffb7ef; /* Lavender pink */
    margin-bottom: 1rem;
    font-size: 2.5rem;
    letter-spacing: 1px;
}

.contact-box p {
    margin-bottom: 2rem;
    color: #e0c9e8; /* Soft lavender */
    font-size: 1.1rem;
    line-height: 1.6;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

input, textarea {
    padding: 0.9rem 1rem;
    border-radius: 16px;
    border: none;
    background-color: #3b1a3b; /* Dark purple input bg */
    color: #f5f5f5;
    font-size: 1.05rem;
    transition: background-color 0.3s ease;
    box-shadow: inset 0 0 6px rgba(255, 182, 255, 0.2);
}

input:focus, textarea:focus {
    outline: none;
    background-color: #551a55;
    box-shadow: 0 0 12px #ff99cc;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

button {
    background-color: #ff8ad9; /* Soft neon pink */
    color: #2d001f; /* Dark text for contrast */
    border: none;
    padding: 0.9rem 0;
    font-size: 1.15rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

button:hover {
    background-color: #fff;
    color: #ff00ff;
}

.contact-info p {
    margin: 0.5rem 0;
    font-size: 1rem;
    color: #c6b7d9; /* Muted lavender */
}

.social-links {
    margin-top: 1.5rem;
}

.social-links a {
    margin: 0 0.7rem;
    color: #ffb7ef;
    font-size: 1.3rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff00ff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 1.5rem;
    }

    .contact-box {
        padding: 2rem 2.5rem;
    }

    .contact-box h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 2rem 1rem;
    }

    .contact-box {
        padding: 1.5rem 2rem;
    }

    .contact-box h1 {
        font-size: 1.75rem;
    }

    input, textarea {
        font-size: 1rem;
    }
}
