/* Base Styles */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&family=Playfair+Display:wght@400;700&display=swap");

:root {
  --primary-color: #1a1a1a;
  --accent-color: #ff3366;
  --text-color: #f5f5f5;
  --secondary-text: #aaaaaa;
  --background: #0f0f0f;
  --card-bg: #1e1e1e;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--background);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: var(--text-color);
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

section {
  padding: 100px 5%;
}

.btn {
  display: inline-block;
  background-color: var(--accent-color);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
}

.btn:hover {
  background-color: #ff1a4f;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 51, 102, 0.3);
}

/* Custom Cursor */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--accent-color);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
  mix-blend-mode: difference;
}

.cursor-follower {
  position: fixed;
  width: 30px;
  height: 30px;
  border: 1px solid var(--accent-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: 0.1s ease;
  opacity: 0.5;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: var(--transition);
  background-color: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(10px);
}

.logo {
  font-size: 24px;
  font-weight: 700;
}

.artist-name {
  font-family: "Playfair Display", serif;
  letter-spacing: 2px;
}

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition);
}

nav ul li a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 2px;
  background-color: var(--text-color);
  margin: 5px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-content {
  flex: 1;
  padding-right: 50px;
}

.hero h1 {
  font-size: 5rem;
  margin-bottom: 20px;
  line-height: 1;
}

.subtitle {
  font-size: 1.2rem;
  color: var(--secondary-text);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.image-container:hover {
  transform: scale(1.02);
}

.image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.image-container img {
  display: block;
  transition: var(--transition);
}

/* Glitch Effect */
.glitch {
  position: relative;
  color: var(--text-color);
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  left: 2px;
  text-shadow: -1px 0 var(--accent-color);
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
  left: -2px;
  text-shadow: -1px 0 #00ffff;
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
  0% {
    clip: rect(31px, 9999px, 94px, 0);
  }
  5% {
    clip: rect(70px, 9999px, 71px, 0);
  }
  10% {
    clip: rect(29px, 9999px, 83px, 0);
  }
  15% {
    clip: rect(16px, 9999px, 91px, 0);
  }
  20% {
    clip: rect(2px, 9999px, 23px, 0);
  }
  25% {
    clip: rect(60px, 9999px, 73px, 0);
  }
  30% {
    clip: rect(14px, 9999px, 56px, 0);
  }
  35% {
    clip: rect(89px, 9999px, 25px, 0);
  }
  40% {
    clip: rect(32px, 9999px, 26px, 0);
  }
  45% {
    clip: rect(67px, 9999px, 96px, 0);
  }
  50% {
    clip: rect(7px, 9999px, 13px, 0);
  }
  55% {
    clip: rect(14px, 9999px, 97px, 0);
  }
  60% {
    clip: rect(63px, 9999px, 17px, 0);
  }
  65% {
    clip: rect(1px, 9999px, 94px, 0);
  }
  70% {
    clip: rect(41px, 9999px, 12px, 0);
  }
  75% {
    clip: rect(40px, 9999px, 32px, 0);
  }
  80% {
    clip: rect(29px, 9999px, 77px, 0);
  }
  85% {
    clip: rect(28px, 9999px, 40px, 0);
  }
  90% {
    clip: rect(20px, 9999px, 78px, 0);
  }
  95% {
    clip: rect(35px, 9999px, 35px, 0);
  }
  100% {
    clip: rect(82px, 9999px, 60px, 0);
  }
}

@keyframes glitch-anim2 {
  0% {
    clip: rect(65px, 9999px, 100px, 0);
  }
  5% {
    clip: rect(52px, 9999px, 74px, 0);
  }
  10% {
    clip: rect(79px, 9999px, 85px, 0);
  }
  15% {
    clip: rect(75px, 9999px, 5px, 0);
  }
  20% {
    clip: rect(67px, 9999px, 61px, 0);
  }
  25% {
    clip: rect(14px, 9999px, 79px, 0);
  }
  30% {
    clip: rect(1px, 9999px, 66px, 0);
  }
  35% {
    clip: rect(86px, 9999px, 30px, 0);
  }
  40% {
    clip: rect(23px, 9999px, 98px, 0);
  }
  45% {
    clip: rect(85px, 9999px, 72px, 0);
  }
  50% {
    clip: rect(71px, 9999px, 75px, 0);
  }
  55% {
    clip: rect(2px, 9999px, 48px, 0);
  }
  60% {
    clip: rect(30px, 9999px, 16px, 0);
  }
  65% {
    clip: rect(59px, 9999px, 50px, 0);
  }
  70% {
    clip: rect(41px, 9999px, 62px, 0);
  }
  75% {
    clip: rect(2px, 9999px, 82px, 0);
  }
  80% {
    clip: rect(47px, 9999px, 73px, 0);
  }
  85% {
    clip: rect(3px, 9999px, 27px, 0);
  }
  90% {
    clip: rect(26px, 9999px, 55px, 0);
  }
  95% {
    clip: rect(42px, 9999px, 97px, 0);
  }
  100% {
    clip: rect(38px, 9999px, 49px, 0);
  }
}

/* About Section */
.about {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-content {
  flex: 1;
}

.about h2 {
  font-size: 3rem;
  margin-bottom: 30px;
  position: relative;
}

.about h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.about p {
  margin-bottom: 20px;
  color: var(--secondary-text);
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
}

.label {
  font-size: 0.9rem;
  color: var(--secondary-text);
}

/* Gallery Section */
.gallery h2 {
  font-size: 3rem;
  margin-bottom: 50px;
  text-align: center;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.filter-btn {
  background: none;
  border: none;
  color: var(--secondary-text);
  font-size: 14px;
  cursor: pointer;
  padding: 8px 15px;
  border-radius: 20px;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--text-color);
  background-color: var(--accent-color);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: var(--transition);
}

.gallery-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.gallery-image img {
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  padding: 20px;
  transform: translateY(20px);
  transition: var(--transition);
}

.gallery-item:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.overlay-content p {
  color: var(--secondary-text);
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.view-btn {
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.8rem;
}

.view-btn:hover {
  background-color: #ff1a4f;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  padding: 30px;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-image {
  max-height: 80vh;
  max-width: 100%;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.close-lightbox {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 30px;
  color: white;
  cursor: pointer;
  transition: var(--transition);
}

.close-lightbox:hover {
  color: var(--accent-color);
}

.lightbox-details {
  margin-top: 20px;
  text-align: center;
}

.lightbox-title {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.lightbox-description {
  color: var(--secondary-text);
}

/* Contact Section */
.contact h2 {
  font-size: 3rem;
  margin-bottom: 50px;
  text-align: center;
}

.contact-container {
  display: flex;
  gap: 50px;
}

.contact-info {
  flex: 1;
}

.info-item {
  margin-bottom: 30px;
}

.info-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--accent-color);
}

.contact-form {
  flex: 2;
}

.form-group {
  position: relative;
  margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  color: var(--text-color);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--secondary-text);
  outline: none;
  transition: var(--transition);
}

.form-group label {
  position: absolute;
  top: 10px;
  left: 0;
  font-size: 16px;
  color: var(--secondary-text);
  pointer-events: none;
  transition: var(--transition);
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
  top: -20px;
  font-size: 12px;
  color: var(--accent-color);
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom: 1px solid var(--accent-color);
}

.form-group textarea {
  height: 100px;
  resize: none;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  padding: 50px 5%;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer-logo {
  font-size: 2rem;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-link {
  color: var(--secondary-text);
  transition: var(--transition);
}

.social-link:hover {
  color: var(--accent-color);
}

.copyright {
  color: var(--secondary-text);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 4rem;
  }

  .about,
  .hero {
    flex-direction: column;
    gap: 50px;
  }

  .hero-content,
  .about-content {
    padding-right: 0;
  }

  .contact-container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  section {
    padding: 80px 5%;
  }

  .hero h1 {
    font-size: 3rem;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--primary-color);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    z-index: 1001;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    margin: 15px 0;
  }

  .menu-toggle {
    display: block;
    z-index: 1002;
  }

  .menu-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .stats {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  section {
    padding: 60px 5%;
  }

  .filter-buttons {
    flex-wrap: wrap;
  }
}

