@charset "utf-8";
/* CSS Document */

/* ===========================
   SHARED STYLES
   =========================== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #739081;
  color: #333;
}

#container {
  max-width: 1000px;
  margin: 0 auto;
}

header, nav, main, footer {
  padding: 15px;
  box-sizing: border-box;
}

h1, h2 {
  text-align: center;
}

#nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}
#nav a {
  text-decoration: none;
  font-weight: bold;
  color: #333;
}
#nav a:hover {
  color: #0077cc;
}

/* ===========================
   SOCIAL CARDS
   =========================== */
.socials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-card i {
  font-size: 2rem;
  margin-bottom: 10px;
}

.social-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* Platform Colors */
.instagram { background: #E1306C; }
.youtube   { background: #FF0000; }
.linkedin  { background: #0077B5; }
.behance   { background: #1769FF; }
.dribbble  { background: #EA4C89; }

/* ===========================
   FLEXBOX LAYOUT (toggle option)
   =========================== */
/*
#container {
  display: flex;
  flex-wrap: wrap;
}

header, nav, main, footer {
  flex: 1 1 100%;
}

#nav {
  order: -1; 
}
*/

/* ===========================
   GRID LAYOUT (toggle option)
   =========================== */
/*
#container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 15px;
}

header, nav, main, footer {
  grid-column: 1 / -1;
}
*/
