/* Modern Artist Bio Page Styles */
:root {
  --primary: #08ae90;
  --primary-dark: #056953;
  --primary-light: #0bdab4;
  --gradient-primary: linear-gradient(135deg, #08ae90 0%, #0bdab4 100%);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 20px rgba(8, 174, 144, 0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-md: 12px;
  --radius-lg: 20px;
}

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

body {
  font-family: 'Raleway', sans-serif;
  line-height: 1.6;
  background-color: #0a0a0a;
  background-image: 
    radial-gradient(at 0% 0%, rgba(8, 174, 144, 0.05) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(11, 218, 180, 0.05) 0px, transparent 50%);
  color: #f8f5f5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Modern Hero Section */
.hero {
  height: 85vh;
  min-height: 500px;
  background-image: linear-gradient(
    rgba(0,0,0,0.6), 
    rgba(0,0,0,0.5)
  ), url('IMG-20241224-WA0008.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(8, 174, 144, 0.1) 100%),
    radial-gradient(circle at 20% 50%, rgba(8, 174, 144, 0.15) 0%, transparent 50%);
  z-index: 1;
}

@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
    height: 70vh;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.artist-name {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #0bdab4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}

.view-all-button {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 16px 36px;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.5px;
}

.view-all-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.view-all-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.view-all-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-glow), 0 8px 25px rgba(11, 218, 180, 0.3);
}

.view-all-button:hover::before {
  left: 100%;
}

.view-all-button:active {
  transform: translateY(-1px) scale(0.98);
}

.view-all-button:active::after {
  width: 300px;
  height: 300px;
}

.view-all-button:focus-visible {
  outline: 2px solid rgba(11, 218, 180, 0.8);
  outline-offset: 3px;
  box-shadow: var(--shadow-glow), 0 0 0 3px rgba(11, 218, 180, 0.2);
}

.view-all-button i {
  transition: transform 0.3s ease;
}

.view-all-button:hover i {
  transform: translateX(4px);
}

/* About Artist Section */
.about-artist {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
  padding: 60px 20px;
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.container {
  width: 80%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.artist-portrait img {
  max-width: 300px;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(11, 218, 180, 0.3);
}

.artist-info {
  flex: 1;
  max-width: 800px;
  text-align: left;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 24px;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--primary-light);
  margin-bottom: 20px;
  font-weight: 600;
  margin-top: 30px;
}

h3 {
  font-size: 1.5rem;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.bio, .vision, .exhibitions {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  line-height: 1.8;
}

.artist-info p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
  line-height: 1.8;
}

.artist-info ul {
  list-style: none;
  padding-left: 0;
}

.artist-info ul li {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}

.artist-info ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--primary-light);
  font-weight: bold;
}

.artist-info ul li:first-child {
  font-weight: 600;
  color: var(--primary-light);
  font-size: clamp(1.1rem, 2.2vw, 1.2rem);
  margin-bottom: 16px;
  padding-left: 0;
}

.artist-info ul li:first-child::before {
  display: none;
}

.artist-info a {
  color: var(--primary-light);
  text-decoration: none;
  transition: var(--transition);
}

.artist-info a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.section {
  margin-top: 40px;
}

/* Modern Hamburger Menu */
.hamburger {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  z-index: 1000;
  background: rgba(8, 174, 144, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(11, 218, 180, 0.2);
  border-radius: 12px;
  padding: 12px;
  transition: var(--transition);
}

.hamburger:hover {
  background: rgba(8, 174, 144, 0.2);
  border-color: rgba(11, 218, 180, 0.4);
  transform: scale(1.05);
}

.hamburger div {
  width: 24px;
  height: 2px;
  background: var(--primary-light);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

/* Modern Menu with Glassmorphism */
.menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 40%;
  min-width: 280px;
  max-width: 400px;
  height: 100%;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-left: 1px solid rgba(11, 218, 180, 0.1);
  color: white;
  z-index: 999;
  padding: 80px 40px 40px;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.5);
  animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.menu ul {
  list-style: none;
}

.menu li {
  margin: 20px 0;
}

.menu a {
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  font-weight: 400;
  transition: var(--transition);
  font-family: "Raleway", sans-serif;
  display: block;
  padding: 12px 0;
  border-radius: var(--radius-sm);
  padding-left: 16px;
  margin-left: -16px;
}

.menu a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--gradient-primary);
  border-radius: 0 2px 2px 0;
  transition: var(--transition);
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.menu a:hover {
  color: var(--primary-light);
  background: rgba(8, 174, 144, 0.1);
  padding-left: 20px;
  margin-left: -20px;
}

.menu a:hover::before {
  height: 60%;
}

.menu a:hover::after {
  width: 100%;
}

.menu.active {
  display: block;
}

.hamburger.active div:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active div:nth-child(2) {
  opacity: 0;
}

.hamburger.active div:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 600px) {
  .menu {
    width: 80%;
  }
}

/* Modern Footer */
.site-footer {
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, #0a0a0a 100%);
  backdrop-filter: blur(20px);
  color: #fff;
  padding: 60px 20px 30px;
  font-family: 'Raleway', sans-serif;
  border-top: 1px solid rgba(11, 218, 180, 0.1);
  position: relative;
  margin-top: 60px;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gradient-primary);
  opacity: 0.3;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-container > div {
  flex: 1;
  min-width: 250px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #f4f4f4;
  font-weight: 600;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 5px 0;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-block;
  padding: 4px 0;
  position: relative;
}

.footer-links ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--primary-light);
  padding-left: 8px;
}

.footer-links ul li a:hover::after {
  width: 100%;
}

.footer-social .social-icons {
  display: flex;
  gap: 16px;
  font-size: 1.75rem;
}

.footer-social .social-icons a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  text-decoration: none;
  transition: var(--transition);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social .social-icons a:hover {
  color: var(--primary-light);
  background: rgba(8, 174, 144, 0.2);
  border-color: rgba(11, 218, 180, 0.3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
    width: 95%;
  }

  .artist-portrait {
    margin-bottom: 30px;
  }

  .artist-info {
    padding: 30px 20px;
    text-align: left;
  }
  
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-container > div {
    min-width: 100%;
  }
  
  .footer-links ul li a {
    margin-left: 0;
  }
  
  .footer-social .social-icons {
    justify-content: center;
  }
  
  .footer-social .social-icons a {
    margin-left: 0;
  }
}
