/* Basic Setup */
body {
    background-color: #111;
    color: #fff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding-top: 50px; /* Space for fixed navbar */
}

body.hero-page {
    padding-top: 0;
}

a {
    color: #fff;
    text-decoration: none;
}

/* Navigation Bar */
.navbar {
    background-color: #000;
    border-bottom: 1px solid #333;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 10px;
    z-index: 1000;
}

.nav-logo a {
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 1.2;
    text-transform: uppercase;
    display: block;
    opacity: 0.3;
}

.nav-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.nav-item {
    margin-left: 10px;
}

.nav-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    opacity: 0.3;
}

.nav-link:hover {
    color: #aaa;
    opacity: 1;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #000;
    border: 1px solid #333;
    min-width: 160px;
    z-index: 1;
    top: 100%;
    left: 0;
    padding: 10px 0;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    text-transform: uppercase;
    font-size: 0.8rem;
    opacity: 0.3;
}

.dropdown-content a:hover {
    background-color: #222;
    opacity: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Main Content */
main {
    padding: 40px;
}

/* Artist Grid */
.artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.artist-block {
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.artist-block:hover {
    transform: scale(1.05);
}

.artist-photo {
    width: 100%;
    padding-bottom: 100%; /* 1:1 Aspect Ratio */
    background-color: #222; /* Placeholder */
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.4s ease;
}

.artist-block:hover .artist-photo {
    transform: scale(1.1);
}

/* Artist-specific photos */
#photo-alex { background-image: url('alex.jpg'); }
#photo-basti { 
    background-image: url('basti.jpg');
    background-position: center 20%;
}
#photo-carlotta { background-image: url('carlotta.jpg'); }

/* Artist name overlays */
.artist-name-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    font-size: 3.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    width: 100%;
    padding: 0 20px;
    opacity: 0.3;
}

.artist-block:hover .artist-name-overlay {
    opacity: 0.3;
}

/* Artist initial with additional text */
.artist-initial-container {
    position: relative;
    display: inline-block;
}

.artist-initial {
    font-size: 5rem;
    font-weight: bold;
    line-height: 1;
    position: relative;
    display: inline-block;
    opacity: 0.3;
}

.artist-initial-extra {
    position: absolute;
    bottom: 0;
    left: 100%;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transition: opacity 0.4s ease;
    white-space: nowrap;
    margin-left: 5px;
    line-height: 1;
    opacity: 0.3;
}

.artist-block:hover .artist-initial-extra {
    opacity: 0.6;
}

/* Event Promo Section */
.event-promo {
    position: relative;
    text-align: center;
    margin-bottom: 60px;
    overflow: hidden;
}

.event-photo {
    width: 100%;
    height: 400px;
    background-color: #222; /* Placeholder */
    background-image: url('group.jpg');
    background-size: cover;
    background-position: center 30%;
    position: relative;
    transition: all 0.4s ease;
}

.event-promo:hover .event-photo {
    filter: blur(3px);
    transform: scale(1.05);
}

.event-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    font-weight: bold;
    letter-spacing: 5px;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
    opacity: 0.25;
    transition: transform 0.4s ease, opacity 0.4s ease;
    will-change: transform, opacity;
    z-index: 2;
    line-height: 0.9;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
    opacity: 0.3;
}

.event-promo:hover .event-title {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.4);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #333;
    font-size: 0.8rem;
}

footer a {
    margin: 0 15px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.3;
}

footer a:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Simple solution for now, could be a hamburger menu */
    }

    .event-title {
        font-size: 4rem;
    }
    
    .event-promo:hover .event-title {
        transform: translate(-50%, -50%) scale(1.4);
    }
    
    .artist-name-overlay {
        font-size: 2.5rem;
    }

    .artist-initial {
        font-size: 3rem;
    }
    
    .artist-initial-extra {
        font-size: 1rem;
    }
}

/* --- CONTACT PAGE SPLIT LAYOUT --- */
.contact-main {
    padding: 40px 0 0 0;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-box {
    background: #222;
    color: #fff;
    border-radius: 12px;
    padding: 1.2em 2em;
    margin: 30px auto 40px auto;
    max-width: 700px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    opacity: 0;
    transform: translateY(-30px) scale(0.98);
    transition: opacity 0.7s cubic-bezier(.77,0,.18,1), transform 0.7s cubic-bezier(.77,0,.18,1);
    z-index: 10;
    position: relative;
}
.contact-info-box .info-icon {
    font-size: 1.6em;
    margin-right: 1em;
    opacity: 0.7;
}
.contact-info-box .info-text {
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    font-weight: 500;
}
.contact-info-box.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.contact-split {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    justify-content: space-between;
}
.contact-half {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-header {
    text-transform: uppercase;
    font-size: 2.1rem;
    font-weight: bold;
    letter-spacing: 2px;
    opacity: 0.75;
    margin-bottom: 18px;
    text-align: center;
}
.map-link {
    display: block;
    width: 100%;
    max-width: 420px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    margin-bottom: 12px;
    transition: box-shadow 0.3s;
}
.map-link:hover {
    box-shadow: 0 8px 32px rgba(0,170,255,0.18);
}
.contact-address {
    font-size: 0.85rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
    text-align: center;
    opacity: 0.7;
}

/* --- ARTIST GRID ON CONTACT PAGE --- */
.contact-artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin: 60px auto 0 auto;
    max-width: 900px;
    justify-items: center;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .contact-split {
        flex-direction: column;
        gap: 30px;
    }
    .contact-half {
        max-width: 100%;
    }
    .contact-artist-grid {
        gap: 24px;
    }
}
@media (max-width: 600px) {
    .contact-header {
        font-size: 1.2rem;
    }
    .contact-info-box {
        font-size: 0.95rem;
        padding: 1em 1em;
    }
}

/* Hamburger menu styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    margin-left: auto;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

@media (max-width: 900px) {
    .hamburger { display: flex; }
    .nav-menu { display: none; flex-direction: column; background: #000; position: absolute; top: 50px; left: 0; width: 100%; }
    .nav-menu.active { display: flex; }
    .nav-item { margin: 10px 0; }
}
