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

:root {
  --primary-color: #213555;
  --accent-color: #ffc451;
  --background-color: #f4f4f4;
  --text-color: #333;
  --container-bg: #fff;
  --shadow: rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  padding: 20px;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--container-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px var(--shadow);
  border-top: 5px solid var(--accent-color);
}

h1 {
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: 600;
}

p {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.section {
  margin: 20px 0;
  padding: 15px;
  background: var(--background-color);
  border-left: 5px solid var(--accent-color);
  border-radius: 8px;
  box-shadow: 0 2px 5px var(--shadow);
}

h2 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 10px;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 5px;
}

ul {
  list-style-type: none;
  padding-left: 15px;
}

ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

ul li::before {
  content: '✔';
  color: var(--accent-color);
  margin-right: 10px;
  font-weight: bold;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

a:hover,
a:focus-within {
  color: var(--accent-color);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 20px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.3rem;
  }
}

.notice {
  background-color: #fff3cd; /* Light yellow background for visibility */
  border-left: 6px solid #ffcc00; /* Bold yellow left border for emphasis */
  color: #856404; /* Dark yellowish text for contrast */
  padding: 15px 20px; /* Space around the content */
  margin: 20px 0; /* Space above and below */
  font-size: 16px; /* Readable text size */
  border-radius: 5px; /* Rounded corners for a modern look */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Slight shadow for depth */
}

.social-media {
  display: flex;
  gap: 15px; /* Space between icons */
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.social-media a {
  font-size: 36px; /* Adjust icon size */
  color: #333; /* Default color */
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-media a:hover,
.social-media a:focus-visible {
  transform: scale(1.3);
  color: #ffc451;
}
/* Portfolio Section */
.portfolio-section {
  text-align: center;
  margin: 80px auto;
  max-width: 900px;
}

.portfolio-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color, #004aad); /* Primary Blue */
  margin-bottom: 15px;
}

.portfolio-section p {
  font-size: 1.2rem;
  color: var(--text-color, #333);
  margin-bottom: 30px;
}

/* Grid Layout for Cards */
.portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Portfolio Item Cards */
.portfolio-item {
  width: 300px;
  border-radius: 12px;
  background: var(--background-light, #f8f9fa);
  border: 2px solid var(--primary-color, #004aad);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item a {
  text-decoration: none;
  color: inherit;
  display: block;
  padding: 20px;
}

/* Content Styling */
.portfolio-content {
  text-align: center;
}

.portfolio-content h3 {
  font-size: 1.4rem;
  color: var(--primary-color, #004aad);
  margin-bottom: 8px;
  font-weight: 600;
}

.portfolio-content p {
  font-size: 1rem;
  color: var(--text-color, #444);
}

/* Hover Effects (With Accessible Contrast) */
.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  background: var(--accent-color, #ffcc00);
}
