/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #FAE8E4;
    color: #000;
    line-height: 1.6;
}

/* Navigation Bar */
.navbar {
    background-color: #D96B6B;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-text {
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.8;
}

/* Welcome Section */
.welcome-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.welcome-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.welcome-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.welcome-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #000;
}

.welcome-description {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
}

/* Featured Artists Section */
.featured-artists-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    color: #000;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.artist-card {
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .artist-card img {
    width: 100%;
    aspect-ratio: 1 / 1; /* makes image square */
    object-fit: cover; /* keeps proportions while filling square */
    border: 2px solid white;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    margin-bottom: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  /* Hover effect: image zooms slightly */
  .artist-card:hover img {
    transform: scale(1.08);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  }
  
  /* Optional: slight lift of the whole card */
  .artist-card:hover {
    transform: translateY(-4px);
  }
  
  /* Font styling for artist names */
  .artist-name {
    font-size: 1.2rem;
    font-family: "Poppins", "Nunito", sans-serif; /* use a distinct modern font */
    font-weight: 600;
    color: #222;
    letter-spacing: 0.5px;
  }
  

.artist-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: #000;
}

/* Upcoming Markets Section */
.upcoming-markets-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: rgba(255,255,255,0.3);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.markets-content {
    text-align: center;
}

.markets-content p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1rem;
}

.market-placeholder {
    background-color: rgba(255,255,255,0.5);
    padding: 2rem;
    border-radius: 8px;
    border: 2px dashed #D96B6B;
}

.market-placeholder p {
    color: #666;
    font-style: italic;
}
#upcoming-markets .section-title {
    margin-bottom: 1.5rem; /* reduce from the default 3rem */
  }

/* About Section */
.about-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .welcome-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .welcome-title {
        font-size: 2rem;
    }
    
    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .welcome-section,
    .featured-artists-section,
    .upcoming-markets-section,
    .about-section {
        padding: 2rem 1rem;
    }
    
    .artists-grid {
        grid-template-columns: 1fr;
    }
    
    .welcome-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.nav-link:focus,
a:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}
.artist-link {
    text-decoration: none;
    color: inherit;
    display: block; /* Makes the link cover the full div */
  }