.container {
  width: 100%;
  max-width: 1200px; /* optional cap */
  margin: 0 auto;
  padding: 20px;
  background-color: #535353;
  overflow-x: auto; /* allows scroll if needed */
  box-sizing: border-box; /* ensures padding doesn't break layout */
}

h1 {
  color: #FFFDD0;
  font-family: sans-serif;
  margin-top: 20px;
}

h3 {
  color: #FFFDD0;
  font-family: sans-serif;
  margin-top: 10px;
}

.container a {
  border-radius: 25px;    
  font-size: small;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 2);
  padding: 10px 20px;
  margin: 0 10px;
  background-color: aliceblue;
  display: inline-block;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  cursor: pointer;
  position: relative;
}

.container a:hover {
  transform: translateY(2px);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 1);
}


footer {
  position: relative;
  bottom: 0;
  right: 0;
  padding: 20px;
  color: #535353;
  text-align: center;
}

.about-me {
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 20px;
  background-color: #535353;
  border-top: 2px solid #ccc;
  text-align: center;
  font-family: sans-serif;
}

.about-me p {
  max-width: 600px;
  margin: auto;
  color: #FFFDD0;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a img {
  width: 32px;
  height: 32px;
  margin: 0 8px;
  transition: transform 0.2s ease;
}

.social-icons a img:hover {
  transform: scale(1.2);
}

a {
  text-decoration: none;
}

.clicked {
  color: #ff4081;
  transform: scale(1.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: hsl(0, 0%, 20%);
  color: #FFFDD0;
  border: 1px solid #FFFDD0;
  padding: 12px 20px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  font-size: 16px;
  opacity: 1;
  transition: opacity 0.5s ease;
  z-index: 1000;
}

.hidden {
  opacity: 0;
  pointer-events: none;
}

html, body {
  height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #33302f;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  margin: 0 auto;
}

table {
  width: 100%;             /* Stretch to fill container */
  border-collapse: collapse;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
  border-radius: 8px;
  overflow: hidden;
  table-layout: auto;      /* or 'fixed' for equal columns */
}

td {
  padding: 15px;
  border: 1px solid #ccc;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4); /* Inset for slight 3D cell depth */
}

/* Spotify Embed */
#content {
  text-align: center;
  margin-top: 35px;
  height: 100%;
  overflow: hidden;
}

/* Timeline Container */
.timeline-container {
padding: 40px 20px;
background-color: #535353;
color: #FFFDD0;
text-align: center;
font-family: sans-serif;
}

/* Vertical Timeline Line */
.timeline {
position: relative;
margin: 40px auto;
padding-left: 30px;
border-left: 8px solid #FFFDD0;
max-width: 600px;
border-radius: 50%;
}

/* Individual Timeline Item */
.timeline-item {
margin-bottom: 30px;
position: relative;
animation: fadeInUp 0.6s ease both;
}

/* Timeline Dot */
.timeline-item::before {
content: '';
position: absolute;
left: -12px;
top: 0;
width: 20px;
height: 20px;
background-color: #FFFDD0;
border: 2px solid #33302f;
border-radius: 50%;
box-shadow: 0 0 0 4px #33302f;
}

/* Timeline Content Styling */
.timeline-content {
background-color: #33302f;
padding: 15px 20px;
border-radius: 8px;
box-shadow: 2px 4px 8px rgba(0,0,0,0.4);
text-align: left;
}

.timeline-content img {
  display: block;         /* Makes the image take up full width of its container, allowing margin auto to work */
  width: 50%;
  height: auto;
  margin: 10px auto;      /* Auto left/right margin centers it */
}

@media (max-width: 768px) {
.timeline {
  padding-left: 20px;
}

.timeline-content {
  font-size: 14px;
}

.timeline-item::before {
  left: -10px;
}
}

.timeline-item a {
  color: #FFFDD0;
  text-decoration: none;
}

.timeline-item a:hover {
  text-decoration: underline;
}

.art-border {
  border: 4px solid #333;       /* Dark border */
  border-radius: 8px;           /* Optional rounded corners */
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3); /* Optional shadow */
}


@keyframes fadeInUp {
from {
  opacity: 0;
  transform: translateY(50px);
}
to {
  opacity: 1;
  transform: translateY(0);
}
}