@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;400;700&display=swap');

:root{
--cream:#faf6f9;
--lavender:#d7c8f2;
--grey:#777;
}

body{
font-family:Inter,sans-serif;
background:var(--cream);
margin:0;
}

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

/* accent */

.accent{
color:var(--lavender);
}

/* navbar */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:20px;
}

.nav-links a{
margin-left:14px;
text-decoration:none;
color:#333;
}

/* profile */

.profile-header{
display:flex;
gap:18px;
align-items:center;
margin-bottom:25px;
}

.avatar-large{
width:80px;
height:80px;
border-radius:50%;
object-fit:cover;
padding:3px;
background:var(--lavender);
}

/* stories */

#stories{
display:flex;
gap:16px;
overflow-x:auto;
margin-bottom:25px;
}

.story{
text-align:center;
font-size:12px;
cursor:pointer;
}

.story-avatar{
width:64px;
height:64px;
border-radius:50%;
padding:3px;
background:var(--lavender);
}

.story-avatar img{
width:100%;
height:100%;
border-radius:50%;
object-fit:cover;
}

/* story viewer */

#storyViewer{
position:fixed;
inset:0;
background:black;
display:none;
justify-content:center;
align-items:center;
z-index:999;
}

#storyViewer img{
max-width:90%;
max-height:90%;
}

#storyClose{
position:absolute;
top:20px;
right:30px;
color:white;
font-size:40px;
cursor:pointer;
}

/* post card */

.post{
background:white;
border-radius:12px;
margin-bottom:32px;
border:1px solid #eee;
overflow:hidden;
}

.post-image{
position:relative;
}

.post-image img{
width:100%;
display:block;
}

.big-heart{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%) scale(0);
font-size:90px;
color:white;
opacity:0;
transition:.4s;
}

.big-heart.show{
opacity:1;
transform:translate(-50%,-50%) scale(1);
}

.post-info{
padding:10px 14px 16px;
}

.post-actions{
display:flex;
gap:18px;
font-size:22px;
margin-bottom:6px;
}

.likes{
font-weight:600;
font-size:13px;
margin-bottom:6px;
}

.meta{
font-size:12px;
color:var(--grey);
}

/* grid */

.grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:4px;
}

.grid-photo{
width:100%;
aspect-ratio:1;
object-fit:cover;
cursor:pointer;
}

/* viewer */

#viewer{
position:fixed;
inset:0;
background:rgba(0,0,0,.95);
display:none;
flex-direction:column;
justify-content:center;
align-items:center;
z-index:999;
}

#viewer.show{
display:flex;
}

#viewer img{
max-width:90%;
max-height:80%;
}

#viewer-caption{
color:white;
margin-top:14px;
}

#viewer-close{
position:absolute;
top:20px;
right:30px;
font-size:40px;
color:white;
cursor:pointer;
}

/* map */

#map{
height:500px;
border-radius:12px;
margin-top:20px;
}

/* footer */

.footer{
font-size:0.8rem;
color:var(--grey);
margin-top:4rem;
display:flex;
flex-direction:column;
gap:0.3rem;
}

.sub-footer{
font-size:0.7rem;
opacity:0.7;
}

.footer,
.sub-footer {
  text-align: center;
}