/* -------------------------------
   Visual Arts Page Styling
---------------------------------*/

/* Hero (Visual Arts) */
.visual-hero {
    background: url(../images/wallpaper\ \(3\).jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 2rem;
    position: relative;
}

.visual-hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.45); /* subtle overlay */
}

.visual-hero .hero-content {
    position: relative;
    z-index: 1;
}

.visual-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.visual-hero p {
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto;
    opacity: 0.95;
}


/* Artist Feature Section (Global Page) */
.artist-feature {
    display: flex;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, #f7f7f7 20%);
    gap: 2rem;
    padding-top: 4rem;
}

.artist-left {
    flex: 1;
}

.artist-left img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.artist-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* text top, grid bottom */
    padding: 4rem 3rem;
}

.artist-text {
    max-width: 450px;
}

.artist-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
}

.artist-text p {
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
}

.artist-music {
    margin-top: 2rem;
}

.artist-music h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000;
}

.music-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.music-links .icon-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.4rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Brand Colors */
.music-links .spotify {
    background: #1DB954;
}

.music-links .soundcloud {
    background: #ff5500;
}

.music-links .instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

/* Hover effect */
.music-links .icon-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.25);
}

/* Artist grid */
.artist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.artist-grid img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.artist-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Responsive for artist feature */
@media (max-width: 768px) {
    .artist-feature {
        flex-direction: column;
    }

    .artist-left img {
        height: 50vh;
    }

    .artist-right {
        padding: 2rem;
    }

    .artist-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .music-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .music-links .icon-btn {
        width: 100%; /* full width buttons */
        justify-content: center; /* center icons + text */
        font-size: 0.95rem;
        padding: 0.9rem;
    }
}

@media (max-width: 480px) {
    .artist-music h3 {
        font-size: 1.2rem; /* slightly smaller title */
    }

    .music-links .icon-btn {
        font-size: 0.9rem;
        padding: 0.7rem;
    }
}


/* Spotlight Artists Grid */
.artists-grid {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.artists-grid h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.artists-grid .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.artist-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    text-align: left;
}

.artist-card:hover {
    transform: translateY(-6px);
}

.artist-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.artist-card h3 {
    font-size: 1.3rem;
    margin: 1rem;
}

.artist-card p {
    font-size: 1rem;
    margin: 0 1rem 1.5rem;
    opacity: 0.85;
}

.artist-card .btn-small {
    display: inline-block;
    margin: 0 1rem 1.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    background: black;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.artist-card .btn-small:hover {
    background: #444;
}

/* Visual Break */
.visual-break {
    padding: 3rem 2rem;
    text-align: center;
    background: #f8f8f8;
    margin: 4rem 0;
}

.visual-break .quote-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.visual-break .accent-line {
    display: block;
    width: 60px;
    height: 3px;
    background: black;
    margin: 0 auto 1.5rem;
}

.visual-break .quote {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.visual-break .author {
    font-size: 0.95rem;
    opacity: 0.7;
}

/* Galleries Section */
.galleries {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.galleries h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}

.gallery-item:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.gallery-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.gallery-item p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .visual-hero h1 {
        font-size: 2rem;
    }
    .visual-hero p {
        font-size: 1rem;
    }
    .artist-card img {
        height: 180px;
    }
}

/* Featured Article */
.feature-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}
.feat-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.feat-text p {
  color: #444;
  margin-bottom: 1.5rem;
}
.btn-read {
  text-decoration: none;
  background: #111;
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 25px;
  transition: background 0.3s;
}
.btn-read:hover {
  background: #444;
}
.feat-img img {
  width: 100%;
  border-radius: 12px;
}