body{
    width: 100%;
    height: 100%;
}
body {
    font-family: 'Cinzel', serif;
}

.artist-card{
    cursor: pointer;
}

.head{
    display: flex;
    align-items: center;
    height: 70px;
    justify-content: space-between;
    padding: 15px 30px;
    background-color: #f8f1e8; /* Subtle beige to reflect traditional Georgian tones */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow */
    border-bottom: 3px solid #a0522d; /* Earthy brown for traditional accents */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.head-logo-col img{
    max-width: 120px; /* Restrict size to maintain balance */
    height: auto;
    display: block;
    
    
}

/* Navigation Styling */
.header-nav {
    margin-left: auto;
}

.header-menu {
    list-style: none;
    display: flex;
    gap: 25px; /* Space between links */
    margin: 0;
    padding: 0;
}

.header-menu li {
    position: relative;
}

.header-menu a {
    text-decoration: none;
    font-size: 18px;
    font-family: 'Cinzel', serif; /* Serif font to evoke tradition */
    font-weight: 600;
    color: #5b3927; /* Deep brown for text */
    padding: 8px 15px;
    border-radius: 5px;
    transition: color 0.3s ease, background-color 0.3s ease;
    background-image: linear-gradient(to right, transparent 50%, #d4af8d 50%);
    background-size: 200%;
    background-position: right;
}

.header-menu a:hover {
    color: #ffffff;
    background-position: left;
    background-color: #5b3927; /* Deep brown for hover */
}

/* Decorative Patterns for Links */
.header-menu li::before {
    content: '';
    position: absolute;
    top: 100%; /* Position below the link */
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 4px;
    background-color: #a0522d; /* Traditional accent color */
    border-radius: 2px;
    transition: width 0.3s ease;
    opacity: 0;
}

.header-menu li:hover::before {
    width: 40px; /* Extend decorative line on hover */
    opacity: 1;
}

/* General Section Styling */
.artists-section {
    padding: 40px 20px;
    background-color: #f8f1e8; /* Subtle beige tone */
    text-align: center;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: #5b3927;
    margin-bottom: 20px;
    border-bottom: 3px solid #a0522d;
    display: inline-block;
    padding-bottom: 5px;
}

/* Grid Styling */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive columns */
    gap: 30px;
    justify-items: center;
}

/* Artist Card Styling */
.artist-card {
    background-color: #ffffff;
    border: 2px solid #a0522d; /* Traditional accent */
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15); /* Soft shadow */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 300px;
}

.artist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

/* Artist Image */
.artist-image {
    width: 100%;
    height: auto;
    border-bottom: 2px solid #a0522d; /* Accent separator */
}

/* Artist Name */
.artist-name {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #5b3927;
    margin: 15px 10px 10px;
}

/* Artist Description */
.artist-description {
    font-family: 'Georgia', serif;
    font-size: 1rem;
    color: #333;
    margin: 0 10px 15px;
    text-align: justify;
    text-align: center;
}


/* Add a Georgian-Inspired Background Pattern
.site-header {
    background-image: url('images/georgian-pattern.png'); 
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: overlay;
} */