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

body{
 
background:#f9f9f9;
color:#222;
overflow-x:hidden;
font-family: Helvetica, Arial, sans-serif, "Apple Color Emoji","Segoe UI Emoji","Noto Color Emoji";
}


/* HEADER */

header{
position:fixed;
top:0;
left:50%;
transform:translateX(-50%);
width:100%;
max-width:1440px;
height:80px;
display:flex;
align-items:center;
padding-left:40px;
background:#f9f9f9;
border-bottom:1px solid #ececec;
z-index:1000;
}

header.logo a{
text-decoration:none!important;
color:inherit;
}

.logo-main{
font-size:24px;
letter-spacing:.2em;
text-transform:uppercase;
font-weight:300;
}

.logo-sub{
font-size:8px;
letter-spacing:.35em;
color:#777;
}

/* MENU BUTTON */

.menu-handle{
display:none;
position:fixed;
top:19px;
right:30px;
width:42px;
height:42px;
background:rgba(255,255,255,.9);
border:1px solid #e5e5e5;
border-radius:50%;
align-items:center;
justify-content:center;
cursor:pointer;
z-index:2000;
transition:.35s ease;
backdrop-filter:blur(10px);
-webkit-backdrop-filter:blur(10px);
}

.menu-handle:hover{
background:#fff;
transform:scale(1.06);
box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.lines{
width:16px;
height:14px;
display:flex;
flex-direction:column;
justify-content:space-between;
}

.lines div{
width:100%;
height:1.5px;
background:#222;
border-radius:10px;
transition:.35s ease;
}

.menu-handle.active .lines div:nth-child(1){
transform:translateY(6px) rotate(45deg);
}

.menu-handle.active .lines div:nth-child(2){
opacity:0;
}

.menu-handle.active .lines div:nth-child(3){
transform:translateY(-6px) rotate(-45deg);
}

/* SIDEBAR */

.sidebar{
    display:flex;
flex-direction:column;
position:fixed;
top:80px;
left:0;

height:calc(100vh - 80px);
overflow:hidden;
background:#f9f9f9;
border-right:1px solid #ececec;
transition:width .45s ease;
}

/* NAV */

.nav{
padding:60px 30px;
display:flex;
flex-direction:column;
gap:25px;
}

.nav a{
text-decoration:none;
font-size:12px;
letter-spacing:.25em;
text-transform:uppercase;
color:#444;
transition:.3s;
}

.nav a:hover{
color:#000;
letter-spacing:.15em;
transition:.5s;
}

/* CONTENT */
.no-result-message{
       text-align: center;
    padding: 40px;
    color: #333;
    font-size: 1.1em;
    font-family: 'Arial', sans-serif;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* ANIMATION */

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(10px);
}
to{
opacity:1;
transform:translateY(0);
}
}

/* SECTION TITLE */

.section-title{
padding-top:20px;
font-size:13px;
letter-spacing:.35em;
text-transform:uppercase;
margin-bottom:40px;
color:#555;
}

/* DIRECTOR */

.director{
display:flex;
gap:50px;
align-items:center;
margin-bottom:100px;
}

.director img{
width:260px;
height:320px;
object-fit:cover;
filter:grayscale(100%);
transition:.5s;
}

.director img:hover{
filter:grayscale(0%);
}

.director-info h2{
font-weight:400;
letter-spacing:.15em;
margin-bottom:10px;
}

.director-info p{
font-size:14px;
line-height:1.6;
color:#666;
max-width:500px;
}

/* TEAM GRID */

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

.member{
text-align:left;
}

.member img{
width:100%;
height:260px;
object-fit:cover;
filter:grayscale(100%);
transition:.5s;
}

.member img:hover{
filter:grayscale(0%);
}

.member-name{
margin-top:15px;
font-size:12px;
letter-spacing:.2em;
text-transform:uppercase;
}

.member-role{
font-size:11px;
color:#777;
margin-top:5px;
}


.flag-links{
display:flex;
gap:10px;

margin-top:auto;
 margin-bottom: 30px;
 margin-left: 20px;
 display:grid;
grid-template-columns:repeat(2, 1fr);
width:70px; 
}
 
.flag-links svg{
width:24px;
height:16px;
display:block;
border-radius:2px;
}

.flag-links a{
    display:flex;
justify-content:center;
align-items:center;
 
margin-right:6px;
transition:transform .25s ease;
}

.flag-links a:hover{
transform:scale(1.15);
}

/* MOBILE SMALL */

@media(max-width:600px){

.team-grid{
grid-template-columns:1fr;
}

.content{
padding:40px 20px;
}

}

/* MOBILE */

@media(max-width:900px){

.menu-handle{
display:flex;
}

.layout{
display:block;
}

.team-grid{
grid-template-columns:repeat(2,1fr);
}

.director{
flex-direction:column;
align-items:flex-start;
}

.sidebar{
left:auto;
right:-180px;
width:180px;
border-left:1px solid #ececec;
border-right:none;
transition:right .4s ease;
z-index:3000;
overflow-y:auto;
overflow-x:hidden;
}

.sidebar.open{
right:0;
}

.nav a{
opacity: 0;
font-size:11px;
letter-spacing:.20em;
}

.sidebar.open .nav a{
animation:fadeUp .6s ease forwards;
}

.content{
margin-left:0!important;
}

}

/* DESKTOP */

@media(min-width:901px){

.sidebar{
width:200px;
}

.content{
margin-left:200px;
}

.nav a{
opacity:0;
animation:fadeUp .6s ease forwards;
}

.nav a:nth-child(1){animation-delay:.05s;}
.nav a:nth-child(2){animation-delay:.1s;}
.nav a:nth-child(3){animation-delay:.15s;}
.nav a:nth-child(4){animation-delay:.2s;}
.nav a:nth-child(5){animation-delay:.25s;}
.nav a:nth-child(6){animation-delay:.30s;}
.nav a:nth-child(7){animation-delay:.35s;}
}

 
