/* ================================
   GLOBALNE VARIJABLE I RESET
================================ */
:root {
  --bg-dark: #0f0f0f;
  --bg-light: #e9e7e7;
  --text-light: #e9e7e7;
  --text-dark: #000;
  --accent: #838282;
  --font-main: 'Charis SIL', serif;
  --section-pad: 5rem 2rem;
  --radius: 10px;
  --header-height: 100px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
}

h2, h3 { text-transform: uppercase; }
h3 { padding-bottom: 5rem; }
p { padding-bottom: 3rem; }

/* ================================
   HEADER & NAVBAR
================================ */
header {
  background: var(--bg-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  max-width: 95%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  position: relative;
}

.nav-left .logo img { height: 70px; width: auto; }

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 3rem;
  font-family: var(--font-main);
  text-transform: uppercase;
}

.nav-links li a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--accent);
  text-decoration: underline;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.social-icon {
  color: var(--text-light);
  font-size: 2.5rem;
  transition: all 0.3s ease;
}

.social-icon:hover { color: var(--accent); }

.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: 1rem;
}

.burger div {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 4px;
}

/* Language dropdown */
.language-dropdown { position: relative; }
.lang-btn { background: none; cursor: pointer; border: none; }
.lang-btn img { width: 40px; }

.lang-menu {
  display: none;
  position: absolute;
  background: var(--bg-dark);
  border: 1px solid #333;
  z-index: 10;
}

.lang-menu button {
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  padding: 0.3rem 0.5rem;
  display: flex;
  justify-content: center;
}

.lang-menu button img {
  width: 30px;
  border-radius: 10%;
}

.lang-menu button:hover { background: #222; }
.language-dropdown.open .lang-menu { display: block; }

/* ================================
   ARTIST HERO SECTION
================================ */
.artist-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6rem 2rem;
  background-color: #e9e7e7;
  flex-wrap: wrap;
}

.artist-hero-image {
  flex: 1;
  max-width: 610px;
  padding: 1rem;
}

.artist-hero-image img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
}

.artist-hero-info {
  flex: 1;
  padding: 1rem 2rem;
  max-width: 600px;
  text-align: center;
}

.artist-hero-info h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.artist-hero-info p {
  font-size: 1.4em;
}

.artist-socials {
  text-align: center;
  width: 100%;
  margin-top: 1rem;
}

.artist-socials a {
  font-size: 3rem;
  margin-right: 1.5rem;
  color: #000;
  transition: color 0.3s;
}

.artist-socials a:hover {
  color: #444;
}

/* ================================
   ARTIST AWARDS
================================ */
.artist-awards {
  background: #0f0f0f;
  color: #e9e7e7;
  text-align: center;
  padding: 4rem 2rem;
}

.artist-awards h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.awards-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.award-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  background: #1a1a1a;
  padding: 1rem 1.5rem;
  border-radius: 10px;
}

.award-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.award-item p {
  font-size: 1.4rem;
  margin: 0;
}

.show-image-btn {
  padding: 8px 16px;
  font-size: 14px;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.show-image-btn:hover {
  background: #fff;
  color: #000;
}

/* ================================
   ARTIST GALLERY
================================ */
.artist-gallery {
  padding: 50px 20px;
  text-align: center;
  background-color: #e9e7e7;
}

.artist-gallery h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.gallery-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(5, 1fr);
}

.gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* ================================
   ARTIST LIGHTBOX
================================ */
.artist-lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.artist-lightbox.open { display: flex; }

.artist-lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 5px;
}

.artist-lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

.artist-lightbox-prev,
.artist-lightbox-next {
  position: absolute;
  top: 50%;
  color: #fff;
  font-size: 50px;
  cursor: pointer;
  user-select: none;
  transform: translateY(-50%);
}

.artist-lightbox-prev { left: 30px; }
.artist-lightbox-next { right: 30px; }

/* ================================
   MODAL
================================ */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  display: block;
  margin: 5% auto;
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.close:hover { color: #ff6b6b; }

/* ================================
   FOOTER
================================ */
.footer {
  background: var(--bg-dark);
  color: #ddd;
  padding: 40px 20px 10px;
  text-align: center;
  font-family: var(--font-main);
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 20px;
  padding-top: 10px;
  font-size: 0.9rem;
  color: #888;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 15px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1200px) {
  .navbar { padding: 0.5rem 1rem; }
  .nav-left .logo img { height: 50px; }

  .nav-center { top: 70px; width: 100%; }
  .nav-links {
    display: none;
    flex-direction: column;
    background: #111;
    width: 100%;
    padding: 1rem 0;
    gap: 1rem;
    text-align: center;
    border-top: 1px solid #222;
  }

  .nav-links.mobile-active { display: flex; position: absolute; z-index: 10; }
  .nav-right { gap: 1rem; }
  .nav-right .social-icon { display: none; }

  .burger { display: flex; margin-left: 0.5rem; }
  .burger div { width: 20px; height: 2.5px; margin: 3px; }

  .lang-btn img { width: 20px; }
  .lang-menu button img { width: 25px; }
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .artist-hero {
    flex-direction: column;
    align-items: center; 
  }

  .artist-hero-image,
  .artist-hero-info {
    max-width: 100%;
    width: 100%;
  }

  .artist-hero-image img {
    width: 100%;
    height: auto;
  }

  .artist-hero p,
  .artist-awards p{
    font-size: 1.2rem;
  }
}

@media (max-width: 1400px) and (min-width: 769px) {

  header {
    padding: 10px 0;
  }

  .navbar {
    height: 80px;
  }

  .logo img {
    height: 45px;
  }

  .nav-links li a {
    font-size: 26px;
  }

  .social-icon {
    font-size: 30px;
  }
}