/* styles.css */

body {
  margin: 0;
  font-family: 'Noto Sans KR', sans-serif;
  color: #333;
}

.back-button-container {
  position: fixed;
  top: 20px;
  right: 30px;
  z-index: 1000;
}

.back-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.back-button:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

.main-content {
  padding: 60px 40px;
  text-align: center;
}

.main-content section {
  max-width: 1200px;
  margin: 0 auto;
}

.main-content h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: white;
}

.main-content p {
  font-size: 1.2em;
  line-height: 1.8;
  margin-bottom: 40px;
  color: white;
}

.menu-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.menu-item {
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 280px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.menu-item h2 {
  font-size: 1.5em;
  color: #2c3e50;
  margin-bottom: 10px;
}

.menu-item hr {
  border: 2px solid #3498db;
  margin: 0 auto 15px auto;
  height: 0;
  width: 100%;
  max-width: 100%;
}

.menu-item p {
  font-size: 1em;
  color: #222;
  line-height: 1.6;
}

/* --- Resume Page Specific Styles --- */

.profile-photo {
  max-width: 180px;
  height: auto;
  border-radius: 50%;
  margin-top: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

header {
  background: url('benne_image.jpg') no-repeat center center;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(40px);
  padding: 40px 20px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

h1 {
  font-size: 2.8em;
  margin-bottom: 10px;
  color: white;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

nav ul li a {
  text-decoration: none;
  color: #f0f0f0;
  font-weight: bold;
  padding: 6px 14px;
  border-radius: 5px;
  transition: background-color 0.2s ease;
  background-color: rgba(0, 0, 0, 0.4);
}

nav ul li a:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

section {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

section h2 {
  font-size: 1.8em;
  margin-top: 20px;
  color: #2c3e50;
}

section ul {
  padding-left: 20px;
}

.subheading {
  margin-top: 30px;
  font-weight: bold;
  font-size: 1.1em;
  color: #444;
}
