/* === Base Styles === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Favicon styling to make it circular */
link[rel="icon"] {
  border-radius: 50%;
  overflow: hidden;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', Arial, sans-serif;
  background: #faf9f6;
  color: #232323;
  font-size: 20px;
  overflow-x: hidden;
  line-height: 1.7;
}

/* === Navbar === */
.navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100vw;
  background: rgba(255,255,255,0.85);
  border-bottom: 1px solid #ece7df;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  height: 70px;
  z-index: 99999;
  transition: background 0.3s, box-shadow 0.3s;
  backdrop-filter: blur(8px);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 70px;
}

.logo {
  font-size: 2.3rem;
  font-weight: 900;
  color: #232323;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: none;
  border: none;
  padding-bottom: 0;
  margin-right: 2.5rem;
}
.logo::before {
  display: none;
}

/* Hamburger: always show three lines, spaced and visible */
.hamburger {
  display: none;
  position: relative;
  z-index: 10000;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hamburger span {
  display: block;
  width: 32px;
  height: 4px;
  margin: 6px 0;
  background: #bfa14a;
  border-radius: 2px;
  transition: 0.3s;
}

.nav-links, ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  margin-left: auto;
  background: none;
}

.nav-links a {
  color: #232323;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 1.1px;
  border: none;
  background: none;
  border-radius: 0;
  padding: 8px 0;
  transition: color 0.2s, border-bottom 0.2s;
  text-decoration: none;
  position: relative;
}
.nav-links a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #bfa14a;
  transition: width 0.2s;
  position: absolute;
  left: 0;
  bottom: -2px;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a:hover,
.nav-links a.active {
  color: #bfa14a;
}

/* === Mobile Menu === */
.menu-overlay {
  z-index: 2000;
}

.menu-exit {
  display: none !important;
}

@media (max-width: 900px) {
  .navbar {
    position: sticky;
    top: 0;
    z-index: 9999;
  }
  .navbar .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    height: 60px;
    width: 100vw;
    box-sizing: border-box;
  }
  .logo {
    font-size: 1.3rem;
    margin-right: 0;
    letter-spacing: 0.12em;
    padding-bottom: 0;
    background: none;
    border: none;
    flex: 1 1 auto;
    z-index: 5002;
  }
  .hamburger {
    display: flex !important;
  }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    align-items: flex-start;
    gap: 2.2rem;
    padding: 80px 2rem 2rem 2rem;
    border-left: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    z-index: 9998;
    transition: transform 0.3s cubic-bezier(.4,0,.2,1), opacity 0.3s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    transform: translateX(100vw);
    opacity: 0;
    pointer-events: none;
    display: flex;
  }
  .nav-links.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    width: 100%;
    font-size: 1.2rem;
    color: #232323;
    border-radius: 0;
    background: none;
    border: none;
    text-align: left;
    padding: 1.2rem 0;
    margin: 0;
    letter-spacing: 1.2px;
  }
  .menu-exit {
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 2.2rem;
    background: none;
    border: none;
    color: #bfa14a;
    cursor: pointer;
    z-index: 5002;
  }
}

/* === Hero Section === */
.banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 340px;
  background: linear-gradient(120deg, rgba(250,249,246,0.8) 0%, rgba(191,161,74,0.08) 100%), url('img/piano-hands.jpg') center center/cover no-repeat;
  opacity: 1.5;
  filter: grayscale(0.04) brightness(1.05);
  z-index: 0;
  animation: fadeIn 1.2s;
}

.landing-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: transparent;
  color: #232323;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
  box-shadow: none;
  border-bottom: none;
  margin-top: 80px;
  margin-bottom: 48px;
  padding-left: 0;
  padding-right: 0;
}

.center-content {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-top: 120px;
  padding: 2.5rem 2rem;
  border-radius: 24px;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 8px 32px rgba(191, 161, 74, 0.08);
  animation: fadeInUp 1.2s;
  max-width: min(540px, 90vw);
  margin-left: auto;
  margin-right: auto;
  padding-left: 6vw;
  padding-right: 6vw;
}

.profile-img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #ece7df;
  background: #fff;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.center-content h1 {
  color: #232323;
  font-size: 2.7rem;
  letter-spacing: 2.5px;
  font-weight: 900;
  margin-bottom: 1.2rem;
}

.description {
  background: #faf9f6;
  color: #232323;
  border: 1px solid #ece7df;
  font-size: 1.15rem;
  max-width: 600px;
  margin: 1.5rem auto 1rem auto;
  padding: 1.2rem 2rem;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(229, 201, 123, 0.04);
  max-width: min(540px, 90vw);
  margin-left: auto;
  margin-right: auto;
  padding-left: 6vw;
  padding-right: 6vw;
}

/* === About Section === */
.about-section {
  background: #fff;
  color: #232323;
  border-top: 1px solid #ece7df;
  animation: fadeIn 1.2s;
  padding-left: 0;
  padding-right: 0;
}

.about-section .container {
  background: #faf9f6;
  border-radius: 18px;
  border: 1px solid #ece7df;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  padding: 2.2rem 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1.2s;
  max-width: min(540px, 90vw);
  margin-left: auto;
  margin-right: auto;
  padding-left: 6vw;
  padding-right: 6vw;
}

.about-section h2 {
  color: #232323;
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  font-weight: 900;
  text-shadow: none;
}

.about-section p {
  font-size: 1.1rem;
}

/* === Piano Lessons Section === */
.lessons-section {
  background: #fff;
  color: #232323;
  border-top: 1px solid #ece7df;
  animation: fadeIn 1.2s;
  padding-left: 0;
  padding-right: 0;
}
.lessons-section .container {
  background: #faf9f6;
  border-radius: 18px;
  border: 1px solid #ece7df;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  padding: 2.2rem 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1.2s;
  max-width: min(540px, 90vw);
  margin-left: auto;
  margin-right: auto;
  padding-left: 6vw;
  padding-right: 6vw;
}
.lessons-section h2 {
  color: #232323;
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  font-weight: 900;
  text-shadow: none;
}
.lessons-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.lesson-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  background: #fff;
  border: 1px solid #ece7df;
  border-radius: 10px;
  padding: 1.5rem 1rem;
  box-shadow: 0 2px 8px rgba(191, 161, 74, 0.03);
  max-width: 400px;
  margin: 0 auto;
  animation: fadeInUp 1.2s;
  max-width: min(540px, 90vw);
  margin-left: auto;
  margin-right: auto;
  padding-left: 6vw;
  padding-right: 6vw;
}
.lesson-contact-form label {
  color: #bfa14a;
  font-weight: 700;
  font-size: 1rem;
}
.lesson-contact-form input,
.lesson-contact-form textarea {
  background: #faf9f6;
  color: #232323;
  border: 1px solid #ece7df;
  border-radius: 6px;
  padding: 0.6rem 0.9rem;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
}
.lesson-contact-form textarea {
  min-height: 80px;
}
.lesson-contact-form button {
  background: #bfa14a;
  color: #232323;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: background 0.2s, color 0.2s, border 0.2s;
  padding: 0.7rem 1.2rem;
}
.lesson-contact-form button:hover {
  background: #232323;
  color: #bfa14a;
  border: 1px solid #bfa14a;
}

/* === Gallery Section === */
.gallery-section {
  background: #fff;
  color: #232323;
  border-top: 1px solid #ece7df;
  animation: fadeIn 1.2s;
  padding-left: 0;
  padding-right: 0;
}
.gallery-section .container {
  background: #faf9f6;
  border-radius: 18px;
  border: 1px solid #ece7df;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  padding: 2.2rem 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1.2s;
  max-width: min(540px, 90vw);
  margin-left: auto;
  margin-right: auto;
  padding-left: 6vw;
  padding-right: 6vw;
}
.gallery-section h2 {
  color: #232323;
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  font-weight: 900;
  text-shadow: none;
}

/* Swiper Gallery Styles */
.gallery-swiper {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(191, 161, 74, 0.03);
}

.gallery-swiper .swiper-slide {
  text-align: center;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}

.gallery-swiper .swiper-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.gallery-swiper .swiper-pagination {
  position: relative;
  margin-top: 1rem;
}

.gallery-swiper .swiper-pagination-bullet {
  background: #bfa14a;
  opacity: 0.3;
  width: 12px;
  height: 12px;
  margin: 0 6px;
}

.gallery-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: #bfa14a;
}

.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
  color: #bfa14a;
  background: rgba(255,255,255,0.95);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  font-size: 24px;
  font-weight: bold;
}

.gallery-swiper .swiper-button-next:hover,
.gallery-swiper .swiper-button-prev:hover {
  background: #fff;
  color: #232323;
}

/* Videos Section Styles */
.videos-section {
  background: #faf9f6;
  color: #232323;
  border-top: 1px solid #ece7df;
  animation: fadeIn 1.2s;
  padding-left: 0;
  padding-right: 0;
}

.videos-section .container {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #ece7df;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  padding: 2.2rem 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1.2s;
  max-width: min(540px, 90vw);
  margin-left: auto;
  margin-right: auto;
  padding-left: 6vw;
  padding-right: 6vw;
}

.videos-section h2 {
  color: #232323;
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  font-weight: 900;
  text-shadow: none;
}

/* Videos Swiper Styles */
.videos-swiper {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(191, 161, 74, 0.03);
}

.videos-swiper .swiper-slide {
  text-align: center;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  padding: 0.5rem;
}

.video-item {
  background: #faf9f6;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(191, 161, 74, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 400px;
}

.video-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(191, 161, 74, 0.1);
}

.video-item iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 10px 10px 0 0;
}

.video-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #232323;
  margin: 1rem 1rem 0.5rem 1rem;
  text-align: left;
}

.video-item p {
  font-size: 0.9rem;
  color: #666;
  margin: 0 1rem 1rem 1rem;
  text-align: left;
  line-height: 1.5;
}

.videos-swiper .swiper-pagination {
  position: relative;
  margin-top: 1rem;
}

.videos-swiper .swiper-pagination-bullet {
  background: #bfa14a;
  opacity: 0.3;
  width: 12px;
  height: 12px;
  margin: 0 6px;
}

.videos-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: #bfa14a;
}

.videos-swiper .swiper-button-next,
.videos-swiper .swiper-button-prev {
  color: #bfa14a;
  background: rgba(255,255,255,0.95);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  font-size: 24px;
  font-weight: bold;
}

.videos-swiper .swiper-button-next:hover,
.videos-swiper .swiper-button-prev:hover {
  background: #fff;
  color: #232323;
}

@media (max-width: 600px) {
  .navbar .container {
    padding: 0 0.7rem;
  }
  .center-content {
    padding: 1.2rem 0.5rem;
  }
  .about-section .container,
  .lessons-section .container,
  .gallery-section .container,
  .videos-section .container {
    padding: 1.2rem 0.5rem;
  }
  .lesson-contact-form {
    padding: 0.7rem 0.3rem;
  }
}

/* === Animations === */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Navbar glow effect for active section */
.navbar.glow {
  box-shadow: 0 0 32px 0 #e5c97b, 0 2px 16px rgba(0,0,0,0.1);
  border-bottom: 2.5px solid #e5c97b;
}

/* More spacing between sections */
.about-section, .lessons-section, .gallery-section, .videos-section, .landing-section {
  padding-top: 120px;
  padding-bottom: 120px;
}
.about-section .container, .lessons-section .container, .gallery-section .container, .videos-section .container, .center-content {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

/* Hover transitions for cards/sections */
.about-section .container,
.lessons-section .container,
.gallery-section .container,
.videos-section .container,
.center-content,
.lesson-contact-form {
  transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
}
.about-section .container:hover,
.lessons-section .container:hover,
.gallery-section .container:hover,
.videos-section .container:hover,
.center-content:hover,
.lesson-contact-form:hover {
  box-shadow: 0 8px 32px rgba(191, 161, 74, 0.10);
  transform: translateY(-6px) scale(1.015);
  background: #fff;
}

@media (max-width: 700px) {
  html, body {
    width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  
  .gallery-swiper .swiper-button-next,
  .gallery-swiper .swiper-button-prev,
  .videos-swiper .swiper-button-next,
  .videos-swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .gallery-swiper .swiper-pagination-bullet,
  .videos-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }
  .navbar .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    height: 60px;
    width: 100vw;
    box-sizing: border-box;
  }
  .logo {
    font-size: 1.3rem;
    margin-right: 0;
    letter-spacing: 0.12em;
    padding-bottom: 0;
    background: none;
    border: none;
  }
  .hamburger {
    margin-left: auto;
    z-index: 4001;
  }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding: 90px 2rem 2rem;
    border-left: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    z-index: 5000;
    pointer-events: auto;
    transition: right 0.3s ease, left 0.3s ease;
  }
  .nav-links a {
    width: 100%;
    font-size: 1.2rem;
    color: #232323;
    border-radius: 0;
    background: none;
    border: none;
    text-align: left;
    padding: 1.2rem 0;
    margin: 0;
    letter-spacing: 1.2px;
  }
  .menu-exit {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 2.2rem;
    background: none;
    border: none;
    color: #bfa14a;
    cursor: pointer;
    z-index: 4002;
  }
  .banner-bg {
    height: 180px;
    min-height: 120px;
  }
  .landing-section, .about-section, .lessons-section, .gallery-section, .videos-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .center-content, .about-section .container, .lessons-section .container, .gallery-section .container, .videos-section .container {
    padding: 1.2rem 0.5rem;
    margin-top: 1.2rem;
    margin-bottom: 1.2rem;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
  }
  .center-content h1, .about-section h2, .lessons-section h2, .gallery-section h2, .videos-section h2 {
    font-size: 1.3rem;
    letter-spacing: 1.2px;
  }
  .profile-img {
    width: 110px;
    height: 110px;
    margin-bottom: 1.2rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .description {
    font-size: 1rem;
    padding: 0.7rem 0.7rem;
    border-radius: 8px;
    text-align: center;
  }
  .lesson-contact-form {
    padding: 0.7rem 0.3rem;
    max-width: 100%;
    border-radius: 8px;
  }
  .footer {
    font-size: 0.85rem;
    padding: 0.8rem 0 0.8rem 0;
  }
  .menu-overlay {
    z-index: 4000;
    pointer-events: auto;
  }
}

/* Footer styles */
.footer {
  width: 100%;
  background: #faf9f6;
  color: #bfa14a;
  text-align: center;
  font-size: 0.95rem;
  padding: 1.2rem 0 1.2rem 0;
  border-top: 1px solid #ece7df;
  margin-top: 2rem;
  letter-spacing: 1px;
}

/* Hamburger morphs into X when active */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 1200px) {
  .landing-section, .about-section, .lessons-section, .gallery-section, .videos-section {
    padding-left: 4vw;
    padding-right: 4vw;
    box-sizing: border-box;
    margin-bottom: 32px;
  }
  .center-content, .about-section .container, .lessons-section .container, .gallery-section .container, .videos-section .container, .lesson-contact-form, .description {
    padding: 1.5rem 5vw 1.5rem 5vw;
    border-radius: 22px;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .description, .lesson-contact-form, .about-section .container, .lessons-section .container, .gallery-section .container, .videos-section .container {
    line-height: 1.9;
    padding: 1.2rem 5vw 1.2rem 5vw;
  }
  .profile-img {
    max-width: 140px;
    max-height: 140px;
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
  }
  .center-content h1, .about-section h2, .lessons-section h2, .gallery-section h2, .videos-section h2 {
    font-size: 1.7rem;
    letter-spacing: 1.5px;
  }
}
@media (max-width: 900px) {
  .hamburger {
    display: flex !important;
    z-index: 10000;
  }
}

/* More space and comfort for cards and text */
.center-content, .about-section .container, .lessons-section .container, .gallery-section .container, .videos-section .container, .lesson-contact-form, .description {
  padding: 2.5rem 2rem 2.5rem 2rem;
  border-radius: 32px;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 8px 32px rgba(191, 161, 74, 0.08);
}
.description, .lesson-contact-form, .about-section .container, .lessons-section .container, .gallery-section .container, .videos-section .container {
  line-height: 1.8;
  padding: 2rem 2rem 2rem 2rem;
}

/* Language switch button styles */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-left: auto;
}
.lang-switch {
  background: none;
  border: 1.5px solid #bfa14a;
  color: #bfa14a;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 18px;
  padding: 0.3em 1.1em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.lang-switch:hover, .lang-switch.active {
  background: #bfa14a;
  color: #fff;
}

/* Hebrew font and RTL */
#hebrew-content {
  font-family: 'Arimo', sans-serif;
  direction: rtl;
  text-align: right;
}
#hebrew-content h1, #hebrew-content h2 {
  font-family: 'Arimo', sans-serif;
}

@media (max-width: 900px) {
  .navbar-actions {
    gap: 0.7rem;
  }
  .lang-switch {
    font-size: 1rem;
    padding: 0.2em 0.8em;
  }
}

.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
}
.lightbox-modal.active {
  display: flex;
}
.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 0 32px #000a;
}
.lightbox-close {
  position: absolute;
  top: 32px;
  right: 48px;
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  user-select: none;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  background: rgba(0,0,0,0.3);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10002;
  user-select: none;
  transition: background 0.2s;
}
.lightbox-arrow:hover {
  background: rgba(0,0,0,0.6);
}
.lightbox-arrow-left {
  left: 32px;
}
.lightbox-arrow-right {
  right: 32px;
}

/* Hide navbar when lightbox is active */
.lightbox-modal.active ~ .navbar,
.lightbox-modal.active ~ nav {
  display: none !important;
}

body.lightbox-active .navbar,
body.lightbox-active nav {
  display: none !important;
}
