/* World-Class About Page Design */
/* This should be included after your main styles.css */

/* === About Page Layout === */
.about-wrapper {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .about-header {
    position: relative;
    margin-bottom: 80px;
  }
  
  .about-header:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #000;
    bottom: -20px;
    left: 0;
  }
  
  .about-header h2 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
    line-height: 1;
  }
  
  .about-header .tagline {
    font-size: 1.4rem;
    font-weight: 300;
    font-style: italic;
    max-width: 80%;
    margin-top: 20px;
    color: #555;
    line-height: 1.4;
  }
  
  /* Hero section with artist image */
  .about-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    margin-bottom: 80px;
    overflow: hidden;
    border-radius: 4px;
  }
  
  .about-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
  }
  
  .about-hero:hover .about-hero-image {
    transform: scale(1.05);
  }
  
  .about-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 80px 40px 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: white;
  }
  
  .about-hero-overlay h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .about-hero-overlay p {
    font-size: 1.1rem;
    max-width: 80%;
    font-weight: 300;
  }
  
  /* Content layout */
  .about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 80px;
  }
  
  /* Artist bio section */
  .about-bio {
    font-size: 1.1rem;
    line-height: 1.8;
  }
  
  .about-bio p {
    margin-bottom: 25px;
  }
  
  .about-bio strong {
    font-weight: 600;
  }
  
  /* Darkart technique section */
  .technique-section {
    background-color: #f8f8f8;
    padding: 60px 30px;
    border-radius: 4px;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
  }
  
  .technique-section h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
  }
  
  .technique-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .technique-text {
    font-size: 1.1rem;
    line-height: 1.8;
  }
  
  .technique-image-container {
    position: relative;
    height: 400px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    transition: all 0.5s ease;
  }
  
  .technique-image-container:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  }
  
  .technique-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .technique-image.light {
    opacity: 1;
    z-index: 2;
  }
  
  .technique-image.dark {
    opacity: 0;
    z-index: 1;
  }
  
  .technique-image-container:hover .technique-image.light,
  .technique-image-container.show-dark .technique-image.light {
    opacity: 0;
  }
  
  .technique-image-container:hover .technique-image.dark,
  .technique-image-container.show-dark .technique-image.dark {
    opacity: 1;
  }
  
  .technique-image-container.flash::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    z-index: 3;
    opacity: 0;
    animation: flash 0.3s ease-out;
  }
  
  @keyframes flash {
    0% { opacity: 0; }
    50% { opacity: 0.8; }
    100% { opacity: 0; }
  }
  
  .technique-caption {
    margin-top: 15px;
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
    text-align: center;
  }
  
  /* Influences section */
  .influences-section {
    margin: 80px 0;
  }
  
  .influences-section h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
  }
  
  .influences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .influence-card {
    background-color: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .influence-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  }
  
  .influence-card-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
  }
  
  .influence-card-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
  }
  
  .influence-card-header .influence-period {
    font-size: 0.9rem;
    color: #666;
  }
  
  .influence-card-body {
    padding: 20px;
  }
  
  .influence-card-body p {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  /* Exhibitions section */
  .exhibitions-section {
    margin: 80px 0;
  }
  
  .exhibitions-section h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
  }
  
  .exhibitions-timeline {
    position: relative;
    padding-left: 40px;
  }
  
  .exhibitions-timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    width: 2px;
    background-color: #eee;
  }
  
  .exhibition-item {
    position: relative;
    margin-bottom: 40px;
  }
  
  .exhibition-item:before {
    content: '';
    position: absolute;
    left: -40px;
    top: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid #000;
    z-index: 1;
  }
  
  .exhibition-item:hover:before {
    background-color: #000;
  }
  
  .exhibition-date {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
  }
  
  .exhibition-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .exhibition-location {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
  }
  
  .exhibition-description {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  /* Conclusion section */
  .conclusion-section {
    margin: 80px 0;
    background-color: #f8f8f8;
    padding: 60px 30px;
    border-radius: 4px;
    text-align: center;
  }
  
  .conclusion-section h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
  }
  
  .conclusion-text {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
  }
  
  .cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  
  .cta-button.primary {
    background-color: #000;
    color: white;
  }
  
  .cta-button.primary:hover {
    background-color: #333;
    transform: translateY(-2px);
  }
  
  .cta-button.secondary {
    background-color: transparent;
    color: #000;
    border: 2px solid #000;
  }
  
  .cta-button.secondary:hover {
    background-color: rgba(0,0,0,0.05);
    transform: translateY(-2px);
  }
  
  /* Animation classes */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .reveal-element {
    position: relative;
  }
  
  .reveal-element:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    transform-origin: right;
    transform: scaleX(1);
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.18, 1);
  }
  
  .reveal-element.revealed:after {
    transform: scaleX(0);
  }
  
  /* Responsive styles */
  @media (min-width: 768px) {
    .about-content {
      grid-template-columns: 1fr 1fr;
    }
    
    .technique-content {
      grid-template-columns: 1fr 1fr;
      align-items: center;
    }
    
    .exhibitions-timeline {
      padding-left: 60px;
    }
    
    .exhibitions-timeline:before {
      left: 20px;
    }
    
    .exhibition-item:before {
      left: -60px;
    }
    
    .cta-buttons {
      flex-direction: row;
      justify-content: center;
    }
  }
  
  @media (min-width: 1024px) {
    .about-hero {
      height: 80vh;
    }
    
    .influences-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  /* Dark mode switch - for demonstrating the Darkart technique */
  .dark-mode-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
  }
  
  .dark-mode-switch label {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin: 0 15px;
  }
  
  .dark-mode-switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .dark-mode-switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
  }
  
  .dark-mode-switch .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
  }
  
  .dark-mode-switch input:checked + .slider {
    background-color: #000;
  }
  
  .dark-mode-switch input:checked + .slider:before {
    transform: translateX(26px);
  }
  
  .dark-mode-switch .switch-text {
    font-size: 0.9rem;
    font-weight: 600;
  }

  /* World-Class About Page Design */
/* This should be included after your main styles.css */

/* === About Page Layout === */
.about-wrapper {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .about-header {
    position: relative;
    margin-bottom: 80px;
  }
  
  .about-header:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #000;
    bottom: -20px;
    left: 0;
  }
  
  .about-header h2 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
    line-height: 1;
  }
  
  .about-header .tagline {
    font-size: 1.4rem;
    font-weight: 300;
    font-style: italic;
    max-width: 80%;
    margin-top: 20px;
    color: #555;
    line-height: 1.4;
  }
  
  /* Hero section with artist image */
  .about-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    margin-bottom: 80px;
    overflow: hidden;
    border-radius: 4px;
  }
  
  .about-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
  }
  
  .about-hero:hover .about-hero-image {
    transform: scale(1.05);
  }
  
  .about-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 80px 40px 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: white;
  }
  
  .about-hero-overlay h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .about-hero-overlay p {
    font-size: 1.1rem;
    max-width: 80%;
    font-weight: 300;
  }
  
  /* Content layout */
  .about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 80px;
  }
  
  /* Artist bio section */
  .about-bio {
    font-size: 1.1rem;
    line-height: 1.8;
  }
  
  .about-bio p {
    margin-bottom: 25px;
  }
  
  .about-bio strong {
    font-weight: 600;
  }
  
  /* Darkart technique section */
  .technique-section {
    background-color: #f8f8f8;
    padding: 60px 30px;
    border-radius: 4px;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
  }
  
  .technique-section h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
  }
  
  .technique-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .technique-text {
    font-size: 1.1rem;
    line-height: 1.8;
  }
  
  .technique-image-container {
    position: relative;
    height: 400px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    transition: all 0.5s ease;
  }
  
  .technique-image-container:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  }
  
  .technique-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .technique-image.light {
    opacity: 1;
    z-index: 2;
  }
  
  .technique-image.dark {
    opacity: 0;
    z-index: 1;
  }
  
  .technique-image-container:hover .technique-image.light,
  .technique-image-container.show-dark .technique-image.light {
    opacity: 0;
  }
  
  .technique-image-container:hover .technique-image.dark,
  .technique-image-container.show-dark .technique-image.dark {
    opacity: 1;
  }
  
  .technique-image-container.flash::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    z-index: 3;
    opacity: 0;
    animation: flash 0.3s ease-out;
  }
  
  @keyframes flash {
    0% { opacity: 0; }
    50% { opacity: 0.8; }
    100% { opacity: 0; }
  }
  
  .technique-caption {
    margin-top: 15px;
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
    text-align: center;
  }
  
  /* Influences section */
  .influences-section {
    margin: 80px 0;
  }
  
  .influences-section h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
  }
  
  .influences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .influence-card {
    background-color: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .influence-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  }
  
  .influence-card-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
  }
  
  .influence-card-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
  }
  
  .influence-card-header .influence-period {
    font-size: 0.9rem;
    color: #666;
  }
  
  .influence-card-body {
    padding: 20px;
  }
  
  .influence-card-body p {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  /* Exhibitions section */
  .exhibitions-section {
    margin: 80px 0;
  }
  
  .exhibitions-section h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
  }
  
  .exhibitions-timeline {
    position: relative;
    padding-left: 40px;
  }
  
  .exhibitions-timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    width: 2px;
    background-color: #eee;
  }
  
  .exhibition-item {
    position: relative;
    margin-bottom: 40px;
  }
  
  .exhibition-item:before {
    content: '';
    position: absolute;
    left: -40px;
    top: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid #000;
    z-index: 1;
  }
  
  .exhibition-item:hover:before {
    background-color: #000;
  }
  
  .exhibition-date {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
  }
  
  .exhibition-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .exhibition-location {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
  }
  
  .exhibition-description {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  /* Conclusion section */
  .conclusion-section {
    margin: 80px 0;
    background-color: #f8f8f8;
    padding: 60px 30px;
    border-radius: 4px;
    text-align: center;
  }
  
  .conclusion-section h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
  }
  
  .conclusion-text {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
  }
  
  .cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  
  .cta-button.primary {
    background-color: #000;
    color: white;
  }
  
  .cta-button.primary:hover {
    background-color: #333;
    transform: translateY(-2px);
  }
  
  .cta-button.secondary {
    background-color: transparent;
    color: #000;
    border: 2px solid #000;
  }
  
  .cta-button.secondary:hover {
    background-color: rgba(0,0,0,0.05);
    transform: translateY(-2px);
  }
  
  /* Animation classes */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .reveal-element {
    position: relative;
  }
  
  .reveal-element:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    transform-origin: right;
    transform: scaleX(1);
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.18, 1);
  }
  
  .reveal-element.revealed:after {
    transform: scaleX(0);
  }
  
  /* Responsive styles */
  @media (min-width: 768px) {
    .about-content {
      grid-template-columns: 1fr 1fr;
    }
    
    .technique-content {
      grid-template-columns: 1fr 1fr;
      align-items: center;
    }
    
    .exhibitions-timeline {
      padding-left: 60px;
    }
    
    .exhibitions-timeline:before {
      left: 20px;
    }
    
    .exhibition-item:before {
      left: -60px;
    }
    
    .cta-buttons {
      flex-direction: row;
      justify-content: center;
    }
  }
  
  @media (min-width: 1024px) {
    .about-hero {
      height: 80vh;
    }
    
    .influences-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  /* Dark mode switch - for demonstrating the Darkart technique */
  .dark-mode-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
  }
  
  .dark-mode-switch label {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin: 0 15px;
  }
  
  .dark-mode-switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .dark-mode-switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
  }
  
  .dark-mode-switch .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
  }
  
  .dark-mode-switch input:checked + .slider {
    background-color: #000;
  }
  
  .dark-mode-switch input:checked + .slider:before {
    transform: translateX(26px);
  }
  
  .dark-mode-switch .switch-text {
    font-size: 0.9rem;
    font-weight: 600;
  }