/* Base */
body {
  margin: 0;
  font-family: 'Rajdhani', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  transition: background-color 0.4s, color 0.4s;
}

:root {
  --bg: #f9f9f9;
  --text: #111;
  --nav-bg: #ffffffdd;
  --accent: #00bcd4;
  --neon: #00fff0;
}

body.dark {
  --bg: #0d1117;
  --text: #f5f5f5;
  --nav-bg: #1a1f24dd;
  --accent: #00eaff;
  --neon: #00ffff;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--nav-bg);
  display: flex;
  align-items: center;
  padding: 8px 20px;
  z-index: 900;
  transition: top 0.3s;
  box-shadow: 0 2px 10px #0003;
}

.navbar.hide {
  top: -80px;
}

.logo-section {
  display: flex;
  align-items: center;
}

.logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin-right: 10px;
}

.site-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

/* Fixed Buttons */
.fixed-buttons {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1001;
}

.fixed-buttons button {
  background: var(--nav-bg);
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 8px;
  box-shadow: 0 0 15px var(--neon);
  transition: background 0.3s, color 0.3s, transform 0.2s;
}

.fixed-buttons button:hover {
  background: var(--accent);
  color: #fff;
  transform: scale(1.1);
}

/* Dropdown Menu */
.dropdown-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 70px;
  right: 20px;
  width: 220px;
  background-color: var(--nav-bg);
  box-shadow: 0 4px 20px #0005;
  border-radius: 8px;
  z-index: 1000;
  animation: slideDown 0.3s ease forwards;
}

.dropdown-menu a {
  color: var(--text);
  text-decoration: none;
  padding: 14px;
  border-bottom: 1px solid #ccc4;
  display: block;
  transition: background 0.3s, color 0.3s;
}

.dropdown-menu a:hover {
  background: var(--accent);
  color: #fff;
}

@keyframes slideDown {
  0% {opacity: 0; transform: translateY(-20px);}
  100% {opacity: 1; transform: translateY(0);}
}

/* Hero Section */
.hero {
  margin-top: 60px;
  text-align: center;
  position: relative;
}

.cover-photo {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
}

.profile-section {
  margin-top: -80px;
}

.profile-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 4px solid var(--bg);
  object-fit: cover;
  box-shadow: 0 0 25px var(--neon);
  animation: fadeIn 1s ease forwards;
}

h1 {
  font-family: 'Orbitron', sans-serif;
  margin-top: 10px;
  animation: fadeIn 1.5s ease forwards;
}

h3 {
  font-weight: 400;
  color: var(--accent);
  animation: fadeIn 2s ease forwards;
}

/* Recent Section */
.recent-section {
  text-align: center;
  padding: 40px 20px;
  animation: fadeIn 2.5s ease forwards;
}

footer {
  text-align: center;
  padding: 20px;
  opacity: 0.7;
}

/* Animations */
@keyframes fadeIn {
  0% {opacity: 0; transform: translateY(10px);}
  100% {opacity: 1; transform: translateY(0);}
}


/* Shortcut Links Section Styles */
.shortcut-section {
  margin: 30px 0;
  padding: 0 20px;
}

.shortcut-box {
  background-color: #ffcc80; /* Pee color with slight yellow/orange tint */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 204, 128, 0.3);
}

.shortcut-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #333;
  text-align: center;
}

.shortcut-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

.shortcut-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.shortcut-item:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.link-text {
  font-size: 16px;
  font-weight: 500;
}

.arrow {
  font-size: 18px;
  transform: rotate(45deg);
  display: inline-block;
  transition: transform 0.2s ease;
}

.shortcut-item:hover .arrow {
  transform: rotate(45deg) translate(2px, -2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .shortcut-links {
    grid-template-columns: 1fr;
  }
  
  .shortcut-section {
    padding: 0 10px;
  }
}