body {
  font-family: 'Poppins', sans-serif;
  background: url('img/bg-light.jpg') no-repeat center center/cover;
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #222;
  position: relative;
  overflow: hidden;
  transition: background 0.8s ease, color 0.6s ease;
}

/* Թեթև մթեցում */
body::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

/* Գլխավոր բլոկ */
header {
  position: relative;
  z-index: 2;
  padding: 50px;
  border-radius: 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(15px);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.4s ease-in-out;
}

/* 💖 Լոգո */
.logo img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  animation: pinkGlow 4s ease-in-out infinite;
}

/* Անիմացիա՝ վարդագույն փայլ */
@keyframes pinkGlow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(247, 15, 208, 0.3),
                0 0 15px rgba(247, 15, 208, 0.4);
    filter: brightness(1);
  }
  50% {
    box-shadow: 0 0 25px rgba(247, 15, 208, 0.8),
                0 0 50px rgba(247, 15, 208, 0.5);
    filter: brightness(1.15);
  }
}

/* Creative տեքստ */
.logo-text {
  font-family: 'Tangerine', cursive;
  font-size: 3.2rem;
  color: #ff66dd;
  text-shadow: 0 0 14px rgba(255, 0, 255, 0.3);
}

/* Welcome տեքստ */
h1 {
  margin-top: 20px;
  font-size: 2.3rem;
  letter-spacing: 1.5px;
  color: #555;
  font-weight: 600;
  text-transform: uppercase;
}

.visitor-box {
  position: absolute;
  top: 15px;
  left: 25px;
  background: rgba(240, 240, 240, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #333;
  padding: 5px 12px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 13px;
  backdrop-filter: blur(5px);
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 6px;
}

.visit-icon {
  width: 20px; /* փոխիր ըստ ցանկության */
  height: 20px;
}


/* Երաժշտական կոճակներ */
.music-controls {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.music-controls button {
  background: #f5f5f5;
  color: #333;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.music-controls button:hover {
  background: rgba(247, 15, 208, 0.1);
  box-shadow: 0 0 8px rgba(247, 15, 208, 0.671);
  transform: scale(1.03);
}

/* Երգի ընթացքի progress bar */
.progress-container {
  margin-top: 15px;
  width: 100%;
  text-align: center;
}

#progress-bar {
  width: 70%;
  height: 10px;
  border-radius: 10px;
  accent-color: #888;
}

span {
  font-size: 13px;
  color: #444;
}

/* Երգի վերնագիր */
.song-title {
  margin-top: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.5px;
}

/* Կոնտակտ հղումներ */
.contact-links {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-links a {
  text-align: center;
  text-decoration: none;
  color: #333;
}

.contact-links a img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.contact-links a:hover img {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(247, 15, 208, 0.671);
}

.contact-links span {
  display: block;
  color: #444;
  font-size: 13px;
  text-transform: uppercase;
  margin-top: 5px;
}

/* 🌑 DARK MODE — Calm Glassmorphic Style */
body.dark {
  background: url('img/bg-dark.jpg') no-repeat center center/cover;
  background-attachment: fixed;
  background-size: cover;
  color: #e5e5e5;
  position: relative;
  overflow: hidden;
}

/* Մեղմ մթին շերտ՝ խորություն տալու համար */
body.dark::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 50%; height: 0%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  z-index: 0;
}

/* Գլխավոր բլոկ (ապակե էֆեկտ) */
body.dark header {
  position: relative;
  z-index: 2;
  background: rgba(25, 25, 25, 0.45);
  backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 50px;
  text-align: center;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
}

/* Hover՝ շատ մեղմ */
body.dark header:hover {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  background: rgba(30, 30, 30, 0.55);
}

/* 💖 Լոգո՝ նուրբ վարդագույն շողով */
body.dark .logo img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(243, 30, 197, 0.596);
  box-shadow: 0 0 15px rgba(231, 7, 231, 0.644);
  animation: pinkSoftGlow 5s ease-in-out infinite;
}

/* Նուրբ փայլի անիմացիա */
@keyframes pinkSoftGlow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(190, 14, 190, 0.205);
    filter: brightness(1);
  }
  50% {
    box-shadow: 0 0 20px rgba(236, 14, 236, 0.726);
    filter: brightness(1.1);
  }
}

/* Creative տեքստ */
.logo-text {
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ff0cc2;
  text-shadow: 0 0 8px rgba(212, 14, 113, 0.849);
}

/* Welcome տեքստ */
body.dark h1 {
  font-size: 2rem;
  margin-top: 10px;
  font-weight: 600;
  color: #ddd;
  letter-spacing: 1.3px;
}

/* Այցելությունների հաշվիչ */
body.dark .visitor-box {
  position: absolute;
  top: 15px;
  left: 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 5px 14px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* Երաժշտական կոճակներ */
body.dark .music-controls button {
  background: rgba(255, 255, 255, 0.08);
  color: #eee;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

body.dark .music-controls button:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
  transform: scale(1.03);
}

/* Ժամանակի տեքստեր */
body.dark span {
  color: #fff;
  font-size: 13px;
}

/* Progress bar */
body.dark #progress-bar {
  accent-color: #999;
}

/* Կոնտակտ հղումներ */
body.dark .contact-links a img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

body.dark .contact-links a:hover img {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}

body.dark .contact-links span {
  color: #ccc;
  font-size: 13px;
}

/* Theme toggle */
body.dark .theme-toggle {
  background: rgba(40, 40, 40, 0.7);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

body.dark .theme-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

body.dark .song-title {
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.25);
  letter-spacing: 0.5px;
}


/* Հարթ անցումներ */
* {
  transition: all 0.3s ease;
}

/* 🌗 THEME SWITCH */
.theme-switch {
  position: fixed;
  top: 15px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 115px;
  height: 38px;
  background: linear-gradient(145deg, #f5f5f5, #dcdcdc);
  border-radius: 30px;
  box-shadow: inset 2px 2px 3px rgba(255,255,255,0.8),
              inset -2px -2px 4px rgba(0,0,0,0.1),
              0 2px 4px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 9999;
}

.switch-label {
  font-family: 'Poppins', sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  color: #555;
  margin-left: 9px;
  letter-spacing: 0.4px;
  transition: color 0.4s ease;
}

.switch-toggle {
  position: relative;
  width: 45px;
  height: 20px;
  background: #eaeaea;
  border-radius: 20px;
  margin-right: 8px;
  display: flex;
  align-items: center;
  transition: background 0.4s ease;
}

.switch-circle {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: white;
  left: 1.2px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.25);
  transition: all 0.4s ease;
}

.switch-circle img {
  width: 11px;
  height: 11px;
  transition: all 0.4s ease;
}

/* Dark mode switch */
body.dark .theme-switch {
  background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
  box-shadow: inset 2px 2px 3px rgba(0,0,0,0.3),
              inset -2px -2px 3px rgba(255,255,255,0.05);
}

body.dark .switch-toggle { background: #444; }
body.dark .switch-label { color: #ddd; }
body.dark .switch-circle { transform: translateX(24px); }
body.dark .switch-circle img { filter: invert(1); }

/* Հարթ անցումներ */
* { transition: all 0.3s ease; }
