/* Global Styles */
:root {
    --primary-color: #A00D4B;
    --text-color: #333;
    --bg-white: #ffffff;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /*font-family: var(--font-family);*/
    font-family: 'Rubik', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
    
    border-top: 3px solid var(--primary-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    color: var(--primary-color);
}

p {
    margin-bottom: 1rem;
    font-size:14px;
}

/* Brand Section */
.brand-container {
    padding: 20px 1%;
    background-color: var(--bg-white);
}

.brand-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: -1px;
}

/* Navigation */
nav {
    background-color: var(--primary-color);
    width: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-menu li a {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Content Sections */
.content-section {
    padding: 40px 1%;
    text-align: left;
}

.content-section h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

/* Long Profiles */
.long-profiles-container {
    padding: 20px 1%;
}

.long-profile {
    display: flex;
    margin-bottom: 40px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 20px;
    gap: 30px;
    box-shadow: 0 10px 30px #a00d4a41;
}

.profile-images-group {
    display: flex;
    gap: 10px;
    flex: 0 0 280px;
}

.img-wrapper {
    overflow: hidden;
    background: #f0f0f0;
    border-radius: 8px;
}

.main-wrapper {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}

.small-images {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.small-wrapper {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.main-image, .small-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.long-profile:hover .main-image,
.long-profile:hover .small-image {
    transform: scale(1.1);
}

.profile-info {
    flex: 1;
}

.profile-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 5px;
}

.profile-info p {
    color: #333;
    margin-bottom: 5px;
    font-size: 15px;
    line-height: 1.6;
}

/* Profile Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px 1%;
}

.profile-card {
    border: 1px solid #eee;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

/* Shine Effect on Card Hover */
.profile-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 300px; /* Same height as .card-image */
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    z-index: 1;
    pointer-events: none;
}

.profile-card:hover::before {
    animation: shine-effect 0.8s ease-in-out;
}

@keyframes shine-effect {
    0% { left: -100%; }
    100% { left: 200%; }
}

.card-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    background: #f0f0f0;
}

.card-name-band {
    background-color: var(--primary-color);
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: 700;
}

.card-description {
    padding: 15px;
    font-size: 0.9rem;
}

/* Footer */
footer {    
    background-color: var(--primary-color);
    padding: 50px 0 20px;
    border-top: 1px solid #444;
    color: white;
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.footer-col .h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: bold;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: #ffffff;
}

.footer-bottom {
    margin-top: 40px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #d5cfcf;
    font-size: 0.8rem;
    color: #fefafa;
}

/* Tags Section */
.tags-section {
    padding: 40px 1%;
    text-align: center;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tag-btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.tag-btn:hover {
    background-color: #800a3c;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .long-profile {
        flex-direction: column;
    }
    .profile-images-group {
        flex: none;
        width: 100%;
    }
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
    .profile-images-group {
        /*flex-direction: column;*/
    }
    .main-image {
        width: 100%;
        height: auto;
    }
    /*.small-images {*/
    /*    flex-direction: row;*/
    /*}*/
    .small-image {
        /*width: calc(33.33% - 7px);*/
        height: 100px;
    }
    
}
@media (max-width: 408px) {
    
    .cards-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
