/*****Body Background****/

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

body {
  background: url('../images/spaceBackground.jpg') no-repeat center center fixed;
  background-size: cover;
  min-height: 100vh;
  width: 100vw;
  overflow-x: hidden;
}
body::before {
  background: rgba(0, 0, 0, 0.5); /* 50% dark */
    backdrop-filter: blur(2px);

}
/* Better performance on mobile */
@media (max-width: 768px) {
  body {
    background-attachment: scroll; /* Fixed can cause issues on mobile */
    background-size: cover;
  }
}


/* ========================================
   SITE HEADER
   ======================================== */

.site-header[data-astro-cid-3ef6ksr2] {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  padding: var(--spacing-md) 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: var(--spacing-lg);
}

.header-content[data-astro-cid-3ef6ksr2] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-md);
}

.logo-section[data-astro-cid-3ef6ksr2] {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.astronaut-logo[data-astro-cid-3ef6ksr2] {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.site-title[data-astro-cid-3ef6ksr2] {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin: 0;
  letter-spacing: -0.02em;
}

.search-section[data-astro-cid-3ef6ksr2] {
  flex-shrink: 0;
}

.lycos-search[data-astro-cid-3ef6ksr2] {
  height: 40px;
  width: auto;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.lycos-search[data-astro-cid-3ef6ksr2]:hover {
  transform: scale(1.05);
}

.search-badge[data-astro-cid-3ef6ksr2] {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
}

/* Header Mobile Styles */
@media (max-width: 768px) {
  .header-content[data-astro-cid-3ef6ksr2] {
    flex-direction: column;
    text-align: center;
  }
  
  .logo-section[data-astro-cid-3ef6ksr2] {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .astronaut-logo[data-astro-cid-3ef6ksr2] {
    width: 60px;
    height: 60px;
  }
  
  .site-title[data-astro-cid-3ef6ksr2] {
    font-size: 2rem;
  }
  
  .lycos-search[data-astro-cid-3ef6ksr2] {
    height: 32px;
  }
}


/* ========================================
   PROFILE WIDGET
   ======================================== */

.profile-widget[data-astro-cid-b3uuc2c6] {
  background: linear-gradient(135deg, #fff, #f0f9fc);
}

.profile-content[data-astro-cid-b3uuc2c6] {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.profile-picture[data-astro-cid-b3uuc2c6] {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  border: 3px solid var(--primary-color);
  box-shadow: 0 4px 12px rgba(0, 169, 204, 0.2), 
              0 0 0 1px rgba(255, 0, 110, 0.1);
}

.profile-picture[data-astro-cid-b3uuc2c6] img[data-astro-cid-b3uuc2c6] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-name[data-astro-cid-b3uuc2c6] {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.tagline[data-astro-cid-b3uuc2c6] {
  color: var(--text-medium);
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--light-gray);
}

.bio[data-astro-cid-b3uuc2c6] {
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.bio[data-astro-cid-b3uuc2c6] p[data-astro-cid-b3uuc2c6] {
  margin-bottom: 0.875rem;
  color: var(--text-dark);
}

.bio[data-astro-cid-b3uuc2c6] p[data-astro-cid-b3uuc2c6]:last-child {
  margin-bottom: 0;
}

.bio[data-astro-cid-b3uuc2c6] strong[data-astro-cid-b3uuc2c6] {
  color: var(--primary-color);
  font-weight: 600;
}

.info-section[data-astro-cid-b3uuc2c6] {
  background: var(--background);
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.info-item[data-astro-cid-b3uuc2c6] {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.label[data-astro-cid-b3uuc2c6] {
  font-weight: 600;
  color: var(--text-medium);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.value[data-astro-cid-b3uuc2c6] {
  color: var(--text-dark);
  font-size: 0.95rem;
}

.mood-item[data-astro-cid-b3uuc2c6] {
  padding-top: 0.75rem;
  border-top: 1px solid var(--light-gray);
}

.mood[data-astro-cid-b3uuc2c6] {
  color: var(--accent-magenta);
  font-weight: 600;
}

.specialties-section[data-astro-cid-b3uuc2c6] {
  background: var(--background);
  padding: 1rem;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--primary-color);
}

.specialties-title[data-astro-cid-b3uuc2c6] {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.specialties-list[data-astro-cid-b3uuc2c6] {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.specialties-list[data-astro-cid-b3uuc2c6] li[data-astro-cid-b3uuc2c6] {
  color: var(--text-dark);
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.5;
}

.specialties-list[data-astro-cid-b3uuc2c6] li[data-astro-cid-b3uuc2c6]:before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

/* Profile Mobile Styles */
@media (max-width: 768px) {
  .profile-name[data-astro-cid-b3uuc2c6] {
    font-size: 1.35rem;
  }
  
  .bio[data-astro-cid-b3uuc2c6] {
    font-size: 0.95rem;
  }
  
  .specialties-list[data-astro-cid-b3uuc2c6] li[data-astro-cid-b3uuc2c6] {
    font-size: 0.9rem;
  }
}


/* ========================================
   LINKS WIDGET
   ======================================== */

.links-widget[data-astro-cid-5sskwpqu] {
  background: #fff;
}

.category-section[data-astro-cid-5sskwpqu] {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--light-gray);
}

.category-section[data-astro-cid-5sskwpqu]:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.category-title[data-astro-cid-5sskwpqu] {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.category-icon[data-astro-cid-5sskwpqu] {
  font-size: 1.3rem;
  filter: drop-shadow(0 0 8px rgba(255, 0, 110, 0.3));
}

.links-grid[data-astro-cid-5sskwpqu] {
  display: grid;
  gap: 0.75rem;
}

.link-item[data-astro-cid-5sskwpqu] {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1rem;
  background: var(--background);
  border-left: 3px solid var(--primary-color);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.link-item[data-astro-cid-5sskwpqu]:hover {
  background: var(--light-gray);
  border-left-color: var(--primary-dark);
  transform: translateX(4px);
}

.link-title[data-astro-cid-5sskwpqu] {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1rem;
}

.link-item[data-astro-cid-5sskwpqu]:hover .link-title[data-astro-cid-5sskwpqu] {
  color: var(--primary-dark);
}

.link-description[data-astro-cid-5sskwpqu] {
  color: var(--text-medium);
  font-size: 0.875rem;
}

.contact-button[data-astro-cid-5sskwpqu] {
  border: none;
  font-family: inherit;
  text-align: left;
  background: var(--background);
  border-left-color: var(--accent-magenta) !important;
}

.contact-button[data-astro-cid-5sskwpqu]:hover {
  background: var(--light-gray);
  box-shadow: 0 0 12px rgba(255, 0, 110, 0.2);
}

.contact-button[data-astro-cid-5sskwpqu] .link-title[data-astro-cid-5sskwpqu] {
  color: var(--accent-magenta);
}

.email-link[data-astro-cid-5sskwpqu] {
  display: flex !important;
}

.contact-section[data-astro-cid-5sskwpqu] {
  background: linear-gradient(135deg, var(--background) 0%, var(--light-gray) 100%);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-bottom: none;
}

/* Links Mobile Styles */
@media (max-width: 768px) {
  .category-section[data-astro-cid-5sskwpqu] {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }
  
  .category-title[data-astro-cid-5sskwpqu] {
    font-size: 1rem;
  }
  
  .link-item[data-astro-cid-5sskwpqu] {
    padding: 0.625rem 0.875rem;
  }
}


/* ========================================
   HALLOWEEN WIDGET
   ======================================== */

.halloween-widget[data-astro-cid-iawvfziy] {
  background: linear-gradient(135deg, #1a1a1a, #2d1b00);
  color: #ff6b00;
  border: 2px solid #ff6b00;
}

.halloween-widget[data-astro-cid-iawvfziy] .widget-title[data-astro-cid-iawvfziy] {
  color: #ff6b00;
  border-bottom-color: #ff6b00;
}

.pumpkin-glow[data-astro-cid-iawvfziy] {
  display: inline-block;
  animation: pumpkinGlow 1.5s ease-in-out infinite;
}

@keyframes pumpkinGlow {
  0%, 100% {
    filter: brightness(1) drop-shadow(0 0 3px #ff6b00);
  }
  50% {
    filter: brightness(1.8) 
            drop-shadow(0 0 15px #ff8800) 
            drop-shadow(0 0 25px #ffaa00);
  }
}

.countdown-display[data-astro-cid-iawvfziy] {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 10px;
}

.countdown-item[data-astro-cid-iawvfziy] {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 107, 0, 0.3);
}

.countdown-value[data-astro-cid-iawvfziy] {
  font-size: 2rem;
  font-weight: 700;
  color: #ff9d00;
  text-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
}

.countdown-label[data-astro-cid-iawvfziy] {
  font-size: 0.8rem;
  color: #ff6b00;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

/* Halloween Mobile Styles */
@media (max-width: 480px) {
  .countdown-display[data-astro-cid-iawvfziy] {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .countdown-value[data-astro-cid-iawvfziy] {
    font-size: 1.5rem;
  }
}


/* ========================================
   DATE/TIME WIDGET
   ======================================== */

.datetime-widget[data-astro-cid-qpdhmn3w] {
  background: linear-gradient(135deg, #fff, #f0fcf9);
}

.datetime-display[data-astro-cid-qpdhmn3w] {
  text-align: center;
  padding: 10px 0;
}

.date[data-astro-cid-qpdhmn3w] {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 10px;
  font-weight: 500;
}

.time[data-astro-cid-qpdhmn3w] {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  font-variant-numeric: tabular-nums;
  letter-spacing: 1px;
}

/* DateTime Mobile Styles */
@media (max-width: 480px) {
  .date[data-astro-cid-qpdhmn3w] {
    font-size: 0.95rem;
  }
  
  .time[data-astro-cid-qpdhmn3w] {
    font-size: 1.5rem;
  }
}


/* ========================================
   PERSONALIZATION WIDGET
   ======================================== */

.personalization-widget[data-astro-cid-n4n6eqkm] {
  background: linear-gradient(135deg, #fff, #fcf9f0);
}

.music-section[data-astro-cid-n4n6eqkm],
.favorites-section[data-astro-cid-n4n6eqkm] {
  margin-bottom: 25px;
}

.music-section[data-astro-cid-n4n6eqkm]:last-child,
.favorites-section[data-astro-cid-n4n6eqkm]:last-child {
  margin-bottom: 0;
}

h3[data-astro-cid-n4n6eqkm] {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.youtube-embed[data-astro-cid-n4n6eqkm] {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
}

.youtube-embed[data-astro-cid-n4n6eqkm] iframe[data-astro-cid-n4n6eqkm] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.favorites-list[data-astro-cid-n4n6eqkm] {
  list-style: none;
  padding: 0;
}

.favorites-list[data-astro-cid-n4n6eqkm] li[data-astro-cid-n4n6eqkm] {
  padding: 10px 15px;
  background: rgba(0, 169, 206, 0.05);
  margin-bottom: 8px;
  border-radius: 6px;
  border-left: 3px solid var(--primary-color);
  transition: background 0.2s;
}

.favorites-list[data-astro-cid-n4n6eqkm] li[data-astro-cid-n4n6eqkm]:hover {
  background: rgba(0, 169, 206, 0.1);
}

.favorites-list[data-astro-cid-n4n6eqkm] a[data-astro-cid-n4n6eqkm] {
  color: var(--text-color);
  font-weight: 500;
}

.favorites-list[data-astro-cid-n4n6eqkm] a[data-astro-cid-n4n6eqkm]:hover {
  color: var(--primary-color);
}

.favorites-list[data-astro-cid-n4n6eqkm] span[data-astro-cid-n4n6eqkm] {
  color: var(--text-color);
}


/* ========================================
   LAYOUT CONTAINER
   ======================================== */

.container[data-astro-cid-j7pv25f6] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.main-grid[data-astro-cid-j7pv25f6] {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
}

.left-column[data-astro-cid-j7pv25f6],
.right-column[data-astro-cid-j7pv25f6] {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Layout Mobile Styles */
@media (max-width: 768px) {
  .main-grid[data-astro-cid-j7pv25f6] {
    grid-template-columns: 1fr;
  }
}
