* Reset and base styles */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Helvetica Neue', Arial, sans-serif; line-height: 1.6; background-color: #fff; color: #333; }

/* Vibrant Accent Colors */
.accent-1 { background-color: #fffae6; } /* Soft yellow */
.accent-2 { background-color: #e6f7ff; } /* Soft blue */
.accent-3 { background-color: #ffe6f0; } /* Soft pink */

/* Sections */
main section { padding: 3rem 1rem; max-width: 1000px; margin: auto; border-radius: 12px; margin-bottom: 2rem; transition: transform 0.3s, box-shadow 0.3s; }
main section:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(252, 1, 185, 0.15); }
main h1, main h2, main h3 { margin-bottom: 1rem; color: #222; font-weight: 700; }
main p { margin-bottom: 1rem; line-height: 1.8; }
ul { margin-left: 1.5rem; margin-bottom: 1rem; }


/* Slideshow */
.slideshow-container { position: relative; max-width: 100%; margin: 1rem 0; overflow: hidden; border-radius: 10px; box-shadow: 0 5px 15px rgba(234, 112, 155, 0.2); }
.slide { display: none; width: 100%; transition: opacity 0.5s ease-in-out; }
.slide img { width: 100%; height: auto; display: block; border-radius: 10px; }

/* Navigation buttons */
.prev, .next { cursor: pointer; position: absolute; top: 50%; width: auto; margin-top: -25px; padding: 10px; color: #fff; font-weight: bold; font-size: 20px; border-radius: 50%; background-color: rgba(0,0,0,0.5); user-select: none; transition: 0.3s; }
.prev:hover, .next:hover { background-color: rgba(0,0,0,0.8); }
.prev { left: 10px; } .next { right: 10px; }

/* Footer */
footer { text-align: center; padding: 1rem; background-color: #222; color: #fff; margin-top: 2rem; }

/* Responsive */
@media (max-width: 768px) {
  header nav { flex-direction: column; gap: 1rem; }
  .resume-btn { margin-top: 0.5rem; }
  main section { padding: 2rem 1rem; }
}


/* Social Media Labels at bottom */
/* Social links container – stays in layout (no floating) */
.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

/* Individual logo buttons */
.social-links a {
  background-color: #ff69b4; /* vibrant pink */
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.4rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.social-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(255, 105, 180, 0.4);
}



.section-title {
  text-align: center;
  font-family: system-ui, sans-serif;
}

/* NAV CONTAINER */
.main-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 20px;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
}

/* ARTIST NAME */
.artist-name {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 2.8rem;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-align: center;
}

/* NAV LINKS */
.nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
    margin-bottom: 14px;
    padding: 0;
}

.nav-links li a {
    font-family: system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    position: relative;
}

/* SUBTLE ARTISTIC HOVER */
.nav-links li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    background: #000;
    left: 0;
    bottom: -4px;
    transition: width 0.3s ease;
}

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



/* MOBILE FRIENDLY */
@media (max-width: 768px) {
    .artist-name {
        font-size: 2.2rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}

.resume-btn {
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e88bdc, #f985d0);
    color: #ffffff;
    font-family: "Poppins", "Montserrat", sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.5px;

    padding: 12px 26px;
    border-radius: 999px; /* oval shape */
    text-decoration: none;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 8px 20px rgba(240, 138, 180, 0.35);
    transition: all 0.3s ease;
}

/* Hover effect */
.resume-btn:hover {
    background: linear-gradient(135deg, #2f20d3, #e96629);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(240, 138, 180, 0.45);
}

/* Active (click) */
.resume-btn:active {
    transform: translateY(0);
    box-shadow: 0 6px 14px rgba(240, 138, 180, 0.35);
}


.register-btn {
    background: linear-gradient(135deg, #f6a6c1, #f08ab4);
    color: #ffffff;
    font-family: "Poppins", "Montserrat", sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.5px;

    padding: 12px 26px;
    border-radius: 999px; /* oval shape */
    text-decoration: none;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 8px 20px rgba(240, 138, 180, 0.35);
    transition: all 0.3s ease;
}

/* Hover effect */
.register-btn:hover {
    background: linear-gradient(135deg, #f08ab4, #ea6ea4);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(240, 138, 180, 0.45);
}

/* Active (click) */
.register-btn:active {
    transform: translateY(0);
    box-shadow: 0 6px 14px rgba(240, 138, 180, 0.35);
}


.about-section {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}


/* Image Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

/* Gallery images */
.gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* Hover effect */
.gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Fullscreen overlay */
.image-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: zoom-out;
}

/* Fullscreen image */
.image-overlay img {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
}

.image-overlay img {
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* Close button */
.image-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 32px;
  color: white;
  cursor: pointer;
  font-weight: bold;
  user-select: none;
}

.image-close:hover {
  opacity: 0.7;
}



.section-p{
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #2a2a2a;
  text-align: center;

  text-shadow: 0.6px 0.6px 1px rgba(0, 0, 0, 0.12);
} 

.section_paragraph {
  max-width: 820px;
  margin: 60px auto;
  padding: 10px 20px;

  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  line-height: 1.8;

  color: #2a2a2a;
  text-align: center;

  text-shadow: 0.6px 0.6px 1px rgba(0, 0, 0, 0.12);
}

.art-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 700px;

  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2c2b2c;
}

.art-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 18px;

  text-shadow: 0.6px 0.6px 1px rgba(242, 134, 195, 0.12);
}

/* Elegant dot */
.art-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.1em;

  font-size: 1.6rem;
  line-height: 1;
  color: #f088c8; /* soft artistic gold */
  
}
fieldset {
  border: 2px solid #ff69b4; /* pink border */
  border-radius: 12px;       /* rounded corners */
  padding: 20px;             /* space inside the box */
  max-width: 500px;          /* limit width */
  margin: 20px auto;         /* center horizontally with top/bottom margin */
  background-color: #fff0f5; /* soft background color */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* subtle shadow */
  font-family: 'Arial', sans-serif; /* modern readable font */
}

legend {
  font-size: 1.5em;
  font-weight: bold;
  color: #ff1493; /* dark pink */
  padding: 0 10px;
}
textarea {
  width: 80%;       /* full width of container */
  height: 200px;     /* taller box */
  padding: 10px;     /* nice spacing inside */
  font-size: 16px;   /* readable text */
  border-radius: 8px;
  border: 1px solid #ccc;
  resize: vertical;  /* allow user to resize vertically only */
}