/* -------------------------------
   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;
}

/* 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;
}