/* CONTACT SECTION */
.contact-section {
    background-color: #0c0c0c;
    color: #fff;
    text-align: center;
}

.contact-title {
    font-family: 'Horizon', sans-serif;
    font-size: 36px;
    color: #ffd700; /* Golden color for title */
    margin-bottom: 20px; /* Adjust margin */
}

.contact-subtitle {
    font-family: 'Montserrat-thin', sans-serif; /* Use regular Montserrat */
    font-size: 16px;
    color: #ddd;
    margin: 0 auto 50px auto; /* Adjusted spacing */
    line-height: 2.0;
    max-width: 800px; /* Ensure text wraps at a reasonable width */
}

.contact-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 100px; /* Move the social media icons down */
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(255, 255, 255, 0.2);
}

.contact-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    border-radius: 50%;
    background-color: #8b5cf6; /* Purple highlight */
    padding: 10px;
}

.contact-item p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
}

.contact-item a {
  text-decoration: none; /* Removes underline */
  color: inherit; /* Inherit the color from the parent */
}

.contact-item a:hover {
  opacity: 0.8; /* Optional hover effect */
}

/* Mobile View */
@media (max-width: 768px) {
    .contact-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
        gap: 20px; /* Space between items */
        max-width: 300px; /* Adjust based on your design */
        margin: 0 auto; /* Center the grid */
        padding: 20px; /* Add padding for better spacing */
    }

    .contact-item {
        width: 90%; /* Full width for each item */
        padding: 15px; /* Adjust padding for smaller screens */
    }

    .contact-icon img {
        width: 50px; /* Adjust icon size for mobile */
        height: 50px;
    }

    .contact-item p {
        font-size: 12px; /* Adjust font size for mobile */
    }
}

/* Desktop View */
@media (min-width: 769px) {
    .contact-container {
        display: flex;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
        margin-top: 100px; /* Move the social media icons down */
    }

    .contact-item {
        width: 150px;
        padding: 20px;
    }

    .contact-icon img {
        width: 60px;
        height: 60px;
    }

    .contact-item p {
        font-size: 14px;
    }
}