/* 1. GLOBAL SETTINGS */
body { 
    background-color: #1a1a1a; 
    color: #e0e0e0; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    margin: 0; 
    line-height: 1.6;
}

/* 2. NAVIGATION & LANGUAGE SWITCHER */
nav {
    background-color: #1a1a1a;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center; /* Keeps everything level */
    gap: 15px;
}
nav ul li a {
    color: #f4f4f4;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    padding: 12px 15px;
    transition: 0.3s ease;
}
nav ul li a:hover {
    color: #bc9c22;
}

/* THE BUTTON STYLE SWITCHER */
.lang-switch {
    margin-left: 20px;
    border: 1px solid #bc9c22;
    border-radius: 4px;
    transition: 0.3s;
}
.lang-switch a {
    color: #bc9c22 !important;
    padding: 8px 15px !important;
}
.lang-switch:hover {
    background-color: #bc9c22;
}
.lang-switch:hover a {
    color: #1a1a1a !important;
}

/* 3. HERO SECTION (The Sliding Panels Fix) */
.hero {
    height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex;
    z-index: 1; /* Background layer */
}

.panel {
    flex: 1;
    background-size: cover;
    background-position: center;
    filter: brightness(0.3) saturate(1); /* Slightly darker for better text contrast */
    transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
    border-right: 1px solid rgba(188, 156, 34, 0.2);
    cursor: pointer;
}

/* THE FIX: Ensure the hovered panel grows and brightens */
.panel:hover {
    flex: 2; /* It grows twice as big */
    filter: brightness(0.8) saturate(1.3); /* It lights up */
    z-index: 2; /* Brings it slightly forward */
}

.hero-content {
    position: relative;
    z-index: 10; /* Keeps text above the sliding panels */
    text-align: center;
    pointer-events: none; /* Allows hover to pass THROUGH the text to the panels */
}

.hero h1 {
    font-size: 4rem;
    color: #bc9c22;
    text-shadow: 0px 0px 30px rgba(0,0,0,0.8);
    margin: 0;
    letter-spacing: 5px;
    text-transform: uppercase;
}

/* 4. CONTENT SECTIONS */
.container { 
    max-width: 1200px; 
    margin: auto; 
    padding: 80px 20px; 
    text-align: center; 
}
h2 { 
    color: #bc9c22; 
    text-transform: uppercase; 
    letter-spacing: 3px; 
    margin-bottom: 50px; 
}

/* 5. PRESS GRID (The 3x2 Alignment) */
.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 50px 30px;
    max-width: 1000px;
    margin: auto;
}

/* 6. SIGNATURE CREATIONS GALLERY (The Artistic Masonry) */
.creations-grid {
    column-count: 4;
    column-gap: 15px;
}
.creation-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: 0.3s;
}
.creation-item:hover { transform: scale(1.03); }
.creation-item img { width: 100%; height: auto; display: block; }

/* 7. RESPONSIVE ADJUSTMENTS */
@media (max-width: 1000px) {
    .media-grid { grid-template-columns: repeat(2, 1fr); }
    .creations-grid { column-count: 3; }
}
@media (max-width: 700px) {
    .creations-grid { column-count: 2; }
    .hero h1 { font-size: 2.5rem; }
    nav ul { gap: 5px; flex-wrap: wrap; }
    .lang-switch { margin-left: 5px; margin-top: 10px; }
}