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

body {
    font-family: Arial, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 4000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */


.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background:#a7476aa2;
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: #a7476aa2;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    height: 90px;
    width: 75px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Active state */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-nav.active {
  right: 0;
}

/* The burger icon */
.menu-toggle {
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 4px;
  background: #333;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile nav panel */

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.95); /* Dark overlay */
  display: none; /* hidden by default */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* make sure it's above everything */
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  color: #fff;
  font-size: 1.5rem;
  margin: 15px 0;
  text-decoration: none;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -240px;
  width: 240px;
  height: 100%;
  background: #0f0f0fb2;
  box-shadow: -2px 0 8px #0c0c0cab;
  padding-top: 60px;
  transition: right 0.3s ease;
  z-index: 900;
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav li {
  margin: 16px 0;
  text-align: center;
}

.mobile-nav a {
  text-decoration: none;
  color: #ffffffcb;
  font-size: 18px;
}

/* Example for overlay menu */
.overlay {
  position: fixed;      /* instead of absolute */
  top: 0;
  left: 0;
  width: 100vw;         /* full width */
  height: 100vh;        /* full height */
  background: rgba(0, 0, 0, 0.9); /* dark background */
  z-index: 999;         /* above everything */
  display: none;        /* hidden by default */
}

/* Show when active */
.overlay.active {
  display: flex;        /* or block, or grid depending on your design */
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 28px;
  color: #ffffffa2;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}

.close-btn:hover {
  transform: scale(1.1);
  color: #ffffffa2; /* blue highlight */
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #ffffffee;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #a7476aa2;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #a7476aa2;
}

/* Main Content */
.main-content {
    display: flex;
    min-height: calc(100vh - 80px);
}

/* Artist Image Section */
.artist-image-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
}

.artist-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #cccccc;
    background-size: cover;
    background-position: center;
}

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

/* Bio Section */
.bio-section {
    flex: 1;
    padding: 60px 40px;
    background-color: #000000;
    display: grid;
    flex-direction: column;
    justify-content: center;
}

.artist-name {
    font-size: 48px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.bio-text {
    font-size: 18px;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease;
}

.bio-text p {
    margin-bottom: 20px;
}

/* Contact Button */
.contact-button {
    display: inline-block;
    background-color: #ffffff;
    color: #000000;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    width: fit-content;
    animation: fadeInUp 1.4s ease;
}

.contact-button:hover {
    background-color: #cccccc;
}

/* Gallery Section */
.gallery-section {
    background-color: #000000;
    padding: 80px 0;
}

.gallery-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #333333, #555555);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Image overlay for titles */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px 15px 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    font-size: 14px;
    text-align: center;
}

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

/* Style filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    color: #cccccc;
    border: 1px solid #444444;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu {
        gap: 20px;
    }

    .main-content {
        flex-direction: column;
    }

    .artist-image-section {
        padding-top: 70px;
    }

    .artist-image {
        height: 400px;
    }

    .bio-section {
        padding: 40px 20px;
    }

    .artist-name {
        font-size: 36px;
    }

    .bio-text {
        font-size: 16px;
    }
}

/* Footer */
.footer {
    background:#e78890b4;
    padding: 40px 0;
    text-align: center;
    margin-top: 20px;
}

.footer a {
    color: #b89875;
    text-decoration: none;
}


@media (max-width: 480px) {
    .artist-name {
        font-size: 28px;
    }

    .bio-text {
        font-size: 14px;
    }

    .nav-menu {
        display: none;
    }
}

.insta-link {
  vertical-align: middle;
    margin-bottom: 20px;
}

.insta-icon {
    display: grid;
  width: 50px;
  height: 50px;
  filter: brightness(0) invert(1); /* makes sure it's white even if it's gray */
  vertical-align: middle;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}