/* styles.css */
:root {
  --side-width: 200px;
}

body {
  margin: 0;
  font-family: sans-serif;
  overflow-x: hidden;
  background: #fff;
  color: #000;
  transition: background 0.3s, color 0.3s;
}

/* Toggle Switch */

/* Shared Image Placeholder */
.logo {
  width: 120px;
  height: 120px;
  background: #ccc;
  border-radius: 50%;
  margin-bottom: 1em;
}

.icon {
  width: 30px;
  height: 30px;
  background: #ccc;
  border-radius: 50%;
  margin-bottom: 1em;
}

/* Landing Section */
.landing {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.landing h1,
.landing p.tagline,
.landing .links {
  opacity: 0;
}

.landing.enter h1 {
  animation: slideDownFade 1s ease forwards;
  animation-delay: 0.3s;
}
.landing.enter p.tagline {
  animation: slideUpFade 1s ease forwards;
  animation-delay: 0.6s;
}
.landing.enter .links {
  animation: fadeInOnly 1s ease forwards;
  animation-delay: 0.9s;
}

.landing h1 {
  font-size: 3em;
  margin: 0;
}
.landing p.tagline {
  font-size: 1.5em;
  color: #555;
  margin: 0.5em 0 1em;
}
.landing .links a {
  display: inline-block;
  margin: 0.5em 1em;
  text-decoration: none;
  color: #0077cc;
  font-weight: bold;
  cursor: pointer;
}

/* Animations */
@keyframes slideDownFade {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInOnly {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Sidebar */
/* Footer */

/* Content Area */

/* Social Icons */

/* Preloader */

