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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Logo styling */
.logo-container {
    text-align: center;
    padding: 40px 0 20px;
}

.logo {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -1px;
    display: inline-block;
    text-transform: uppercase;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 100px;
    background-image: url('../images/general_1.jpg'); /* Replace with actual skyline silhouette */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    opacity: 0.2;
}

/* Header and Navigation */
header {
    text-align: center;
    padding: 0 0 30px;
    border-bottom: 1px solid #eee;
}

nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #666;
}

/* Tagline section */
.tagline {
    text-align: center;
    padding: 20px 0;
    margin-bottom: 10px;
}

.tagline h2 {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #555;
    font-style: italic;
}

/* Main Gallery Layout */
.main-gallery {
    padding: 20px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
}

.gallery-item.large {
    grid-column: span 1;
    aspect-ratio: 1/1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

/* Caption styling */
.caption {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    flex-direction: column;
}

.gallery-item:hover .caption {
    opacity: 1;
}

.player-name {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1;
    text-transform: lowercase;
    font-style: italic;
    color: #f5f5f5;
}

.player-title {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1;
    text-transform: lowercase;
    font-style: italic;
    color: #f5f5f5;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
    border-top: 1px solid #eee;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    font-size: 1.1rem;
    color: #000;
    transition: color 0.3s;
}

.instagram-link:hover {
    color: #405DE6;
}

.instagram-icon {
    margin-right: 8px;
    font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.large {
        grid-column: span 1;
    }
    
    .logo {
        font-size: 2.5rem;
    }
    
    nav ul {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large {
        grid-column: span 1;
    }
    
    nav ul li {
        margin: 0 8px;
    }
    
    nav ul li a {
        font-size: 0.75rem;
    }
}
