/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    min-height: 100vh;
    padding: 40px 20px;
}

/* Main container */

/* SOCIAL ICON ROW */
.social-links {
  margin-top: 5px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* PLATFORM COLORS */
.youtube {
  background: #ff0000;
}

.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.facebook {
  background: #1877f2;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.page-title {
    color: #f9d976;
    font-size: 30px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* Grid layout */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* Card design */
.contact-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-card h2 {
    color: #203a43;
    font-size: 22px;
    margin-bottom: 10px;
}

.place {
    color: #555;
    font-size: 15px;
    margin-bottom: 20px;
}

/* Info */
.info {
    font-size: 16px;
    margin: 10px 0;
}

.info a {
    color: #2c5364;
    text-decoration: none;
    font-weight: 500;
}

.info a:hover {
    color: #f9d976;
}

/* Mobile */
@media (max-width: 480px) {
    .page-title {
        font-size: 25px;
    }
}
