/* =============================
   GLOBAL
============================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #ffffff;
  color: #111;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  transition: opacity 0.6s ease;
}

body.loaded {
  opacity: 1;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

/* =============================
   HEADER
============================= */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 60px;
  border-bottom: 1px solid #eee;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h1 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* =============================
   NAVIGATION
============================= */
nav {
  display: flex;
  align-items: center;
}

nav a {
  margin-left: 35px;
  text-decoration: none;
  color: #111;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

nav a:hover {
  opacity: 0.6;
}

/* =============================
   HOVER DROPDOWN
============================= */
.dropdown {
  position: relative;
}

.submenu {
  position: absolute;
  top: 35px;
  left: 0;
  background: #fff;
  border: 1px solid #eee;
  padding: 15px 0;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  z-index: 1500;
}

.submenu a {
  padding: 10px 20px;
  margin: 0;
  font-size: 12px;
  letter-spacing: 1px;
}

.submenu a:hover {
  background: #f8f8f8;
}

.dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* =============================
   HAMBURGER MENU
============================= */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background: #111;
  transition: all 0.3s ease;
}

nav.mobile-active {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #eee;
  padding: 20px 0;
  z-index: 1500;
}

nav.mobile-active a {
  margin: 15px 20px;
}

/* =============================
   LAYOUT
============================= */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 60px;
}

/* =============================
   HERO
============================= */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero img {
  max-width: 900px;
  border: 1px solid #eee;
  transition: transform 1s ease;
}

.hero img:hover {
  transform: scale(1.02);
}

/* =============================
   HERO DOUBLE IMAGES
============================= */
.hero.hero-double {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero.hero-double img {
  max-width: 48%;
  border: 1px solid #eee;
  transition: transform 1s ease;
}

.hero.hero-double img:hover {
  transform: scale(1.02);
}

/* =============================
   GALLERY
============================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
  margin-top: 40px;
}

.gallery img {
  border: 1px solid #eee;
  cursor: pointer;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.gallery img:hover {
  transform: scale(1.03);
  opacity: 0.95;
}

/* =============================
   MODAL (IMAGE)
============================= */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  z-index: 2000;
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal img {
  width: auto;
  height: auto;
  max-width: 95vw;
  max-height: 90vh;
  object-fit: contain;
  transform: scale(0.98);
  transition: transform 0.4s ease;
}

.modal.open img {
  transform: scale(1);
}

/* =============================
   ✅ LEGAL FOOTER (NEW)
============================= */
.legal-footer {
  text-align: center;
  padding: 40px 0 20px;
  font-size: 11px;
  opacity: 0.5;
}

.legal-footer button {
  background: none;
  border: none;
  color: #777;
  margin: 0 10px;
  cursor: pointer;
  font-size: 11px;
}

.legal-footer button:hover {
  color: #000;
}

.pdf-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
}

.pdf-content {
  width: 85%;
  height: 85%;
  margin: 4% auto;
  background: white;
}

.pdf-content iframe {
  width: 100%;
  height: 100%;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
}

/* =============================
   ✅ PDF MODAL (NEW)
============================= */
.pdf-modal {
  display: none;
  position: fixed;
  z-index: 4000;
  inset: 0;
  background: rgba(0,0,0,0.85);
}

.pdf-content {
  position: relative;
  width: 85%;
  height: 85%;
  margin: 4% auto;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.pdf-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 22px;
  cursor: pointer;
  color: #333;
}

/* =============================
   ABOUT PAGE
============================= */
.page-title {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 60px;
}

.artist-name {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}

.section {
  margin-top: 80px;
}

.section-title {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.entry {
  font-size: 14px;
  margin-bottom: 8px;
}

.artist-description {
  margin-top: 40px;
  font-size: 14px;
  line-height: 1.8;
}

.contact-box {
  margin-top: 70px;
  padding: 18px 25px;
  background: #f5f5f5;
  border-left: 4px solid #111;
  display: inline-block;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 1024px) {
  .container {
    padding: 80px 30px;
  }
  .hero.hero-double img {
    max-width: 48%;
  }
}

@media (max-width: 768px) {
  header {
    padding: 20px 30px;
  }

  .container {
    padding: 60px 20px;
  }

  nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero.hero-double img {
    max-width: 100%;
  }

  .gallery {
    gap: 30px;
  }

  .page-title {
    margin-bottom: 40px;
  }

  .submenu {
    display: none !important;
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 18px;
  }

  nav a {
    font-size: 12px;
    margin: 10px 0;
  }

  .section {
    margin-top: 50px;
  }

  .entry, .artist-description {
    font-size: 13px;
  }
}
