/* contact.css - Updated & Fixed */

/* Apply a background to the body that matches the homepage */
.contact-page-body {
    background: url('images/hero-bg.html') no-repeat center center/cover;
    background-attachment: fixed;
}

/* Ensure the main container has enough space from the header */
#contact-page {
    padding-top: 120px; /* Pushes content down from the fixed header */
}

/* =================================== */
/* ==== FIX TEXT COLOR VISIBILITY ==== */
/* =================================== */

/* All text inside the main card should be light and readable */
#contact-page .section-card h2,
#contact-page .section-card h3,
#contact-page .section-card p,
#contact-page .section-card strong {
    color: #ffffff; /* Sets all text to white */
}

/* All links should also be a light, readable color */
#contact-page .section-card a {
    color: #a7f5de; /* A light teal color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

#contact-page .section-card a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* =================================== */
/* ===== FIX SOCIAL ICON SIZES ===== */
/* =================================== */

.social-btns-contact-page {
  margin-top: 20px; /* Add some space above the icons */
  text-align: center;
}

/* This rule sets a small, fixed size for the social media icons */
.social-btns-contact-page img {
  width: 60px;  /* Set a fixed width */
  height: 60px; /* Set a fixed height */
  margin: 0 15px; /* Add space between the icons */
  transition: transform 0.3s ease;
}

.social-btns-contact-page img:hover {
  transform: scale(1.1); /* Adds a subtle zoom effect on hover */
}


/* =================================== */
/* ==== GENERAL LAYOUT & STYLING ==== */
/* =================================== */

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 40px;
    margin: 40px 0;
    text-align: left;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px;
    border-radius: 15px;
}

.contact-info-card h3 {
    border-bottom: 2px solid #a7f5de;
    padding-bottom: 10px;
    margin-top: 0;
}

.contact-info-card ul {
    list-style: none;
    padding: 0;
}
.contact-info-card li {
    margin: 15px 0;
}

.contact-map-links {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.map-switcher {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

/* =================================== */
/* ==== RESPONSIVE DESIGN ==== */
/* =================================== */

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr; /* Stack columns on smaller screens */
    }

    .map-switcher {
        flex-direction: column;
        gap: 15px;
    }
}