body {
    margin: 0;
    background:#eaadb2;
    font-family: "Merriweather", serif;
    color: #eee8ac;

}

h1 {
    text-align: center;
    margin-top: 110px;
    font-size: 6rem;
}

.navbar {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 60px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 20px 50px;

    background: rgba(181, 31, 62, 0.5);
    backdrop-filter: blur(10px);

    z-index: 999;

    box-sizing: border-box;

    transition:
        height 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;

}

.navbar:hover {
    
    height: 70px;

    background: #eaadb2;

    box-shadow: 5px 0 20px rgba(0,0,0,.25); 
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.mobile-about {
    display: none;
}

.home-link {
	order:-1;
    display: flex;
    align-items: center;
    justify-content: center;

    height: 100%;
}

.home-icon {
    width: 40px;
    height: 30px;
    transform: translateY(-0px);

    fill: white;
    transition: fill .25s ease, transform .25s ease;
}

.navbar:hover .home-icon {
    fill: #b51f3e
}

.home-link:hover .home-icon {
    fill: #eee8ac;
    transform: scale(1.1);
}

.navbar a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    transition: .25s;
}

.navbar:hover a {
    color: #b51f3e
}

.navbar a:hover {

    color: #eee8ac;
}

.dance-link:hover {
    animation: colorChange .25s linear infinite;
}

@keyframes colorChange {
    0% {
        color: #ff0000;
    }
    32% {
        color: #ff0000;
    }

    33% {
        color: #00ff0d;
    }
    65% {
        color: #00ff0d;
    }

    66% {
        color: #002aff;
    }
    99% {
        color: #002aff;
    }

    100% {
        color: #ff0000;
    }
}

.logo {
    top: 2px;
    max-width: 500px;
    position: absolute;
    left: 52%;
    transform: translateX(-50%);
    transition: 0.25s ease;
}
.navbar:hover .logo {
    top: 8px;
}

.logo {
    top: 2px;
    max-width: 500px;
    position: absolute;
    left: 52%;
    transform: translateX(-50%);
    transition: 0.25s ease;
}
.navbar:hover .logo {
    top: 8px;
}

.sidebar {
    position: fixed;
    top: 60px;
    left: 0;

    width: 60px;
    height: calc(100vh - 60px);

    background: rgba(181,31,62,.75);
    backdrop-filter: blur(10px);

    transition:
        width 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;

    z-index: 502;

}

.sidebar:hover {
    width: 70px;

    background: #eaadb2;

    box-shadow: 5px 0 20px rgba(0,0,0,.25);
}

.sidebar:hover ~ .hands {
    left: 18px;
}

.sidebar:hover ~ .robie {
    left: 58px;
}

.social-bar {
    position: absolute;

    top: 180px;
    left: 15px;

    display: flex;
    flex-direction: column;
    gap: 30px;

    transition: 
    left 0.25s ease;

}

.social-icon * {
    
    transition: fill 0.25s ease;
}
.sidebar:hover .social-icon * {
    fill: #B51F3E;
}

.sidebar:hover .social-bar {
    left: 20px;
}

.social-link {
    display: inline-block;
    transition: transform 0.25s ease;
}

.social-link:hover {
    transform: scale(1.1);
}

.social-icon {
    width: 30px;
    height: 30px;
}

.social-icon * {
    fill: #eaadb2;
    transition: fill 0.25s ease;
}

.social-link:hover .social-icon * {
    fill: #eee8ac;
}

/* ===========================
   Footer
=========================== */

.site-footer{

    position: relative;

    background:#f7f1f1;

    border-top:20px solid #b51f3e;
    box-shadow: inset 0 10px 0 #b51f3e;

    padding:70px 8%;

}

.site-footer::before {
    content: "";

    position: absolute;

    top: 15px;
    left: 0;
    width: 100%;
    height: 5px;

    background: #b51f3e;
}
.footer-content{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:80px;

    flex-wrap:wrap;

}
.footer-brand{

    flex:1;

    min-width:180px;

    color:#b51f3e;

    font-weight:bold;

}
.footer-column{

    display:flex;

    flex-direction:column;

    gap:12px;

    min-width:160px;

}
.footer-column h3{

    margin-bottom:10px;

    color:#b51f3e;

    font-size:1.4rem;

}
.footer-column a{


    text-decoration:none;

    color:#d37b83;

    transition:.25s;

}
.footer-column a:hover{
    color:#b51f3e;
}

.footer-link {

    display: flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;
    color: #d37b83;

    transition: color .25s ease;
}

.footer-icon {

    fill: #eaadb2;

    width: 22px;
    height: 22px;

    flex-shrink: 0;

    transition:
        transform .25s ease,
        fill .25s ease;
}

.footer-link:hover {

    text-decoration: underline;
}
.footer-link:hover .footer-icon {

    transform: scale(1.1);
}

/* ===========================
   Footer-end
=========================== */

.header {
    align-items: center;

    width: 100%;
    
}

.header h2 {
    margin: 60px 0 0 60px;

    text-align: center;
    font-family: "Merriweather", serif;
    font-weight:lighter;
    font-size: 1.15rem;

    background: #b51f3e;
    border-bottom: 4px solid #eaadb2;
    outline: 8px solid #b51f3e;
    color: #eaadb2;
    padding: 20px 30px 10px 0;
}

.animation-gallery{

    margin-left: 60px;
    display:grid;

    grid-template-columns:
        repeat(auto-fit, minmax(400px, 1fr));

    gap: 0px;


}

.animation-card{

    position:relative;

    display:block;

    overflow:hidden;

    /* border-radius:14px; */

    text-decoration:none;

    background:#000;

    aspect-ratio:16 / 9;

    transition:
        transform .25s ease,
        box-shadow .25s ease;

}

.animation-card video{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

    transition:
        transform .25s ease,
        filter .25s ease;

}

.overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:22px;

    background:linear-gradient(
        transparent 35%,
        rgba(0,0,0,.75)
    );

    opacity:0;

    transition:opacity .25s ease;

}

.overlay h3{

    margin:0;

    color:white;

    font-size:1.4rem;

}

.overlay p{

    margin-top:6px;

    color:#eaadb2;

    font-size:.95rem;

}

.animation-card:hover{

    transform:scale(1.03);
    box-shadow:0 15px 30px rgba(0,0,0,.25);
    z-index: 10;

}

.animation-card:hover video{

    filter:brightness(.65);

}

.animation-card:hover .overlay{

    opacity:1;

}

@media (max-width: 768px) {

    /* ---------- NAVBAR ---------- */

    .navbar {
        height: 55px;
        padding: 10px 15px;
        justify-content: flex-start;
    }

    .navbar:hover {
        height: 55px;
    }

    .nav-left {
        display: flex;
        align-items: center;
        gap: 15px;
        width: auto;
    }

    .nav-right {
        display: flex;
        align-items: center;
        gap: 15px;
        width: auto;
        margin-left: 125px;
    }
	
	.desktop-about {
    	display: none;
	}

	.mobile-about {
    display: inline;
	}

    .home-link {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    .dance-link {
        display: none;
    }

    .navbar a {
        font-size: 0.9rem;
    }

    .logo {
        display: none;
    }


    /* ---------- SIDEBAR ---------- */

    .sidebar {
        display: none;
    }

    /* ---------- FOOTER ---------- */

    .site-footer {
        padding: 50px 25px;
		z-index: 2000;
    }

    .footer-content {
        flex-direction: column;
        gap: 35px;
    }

    .footer-brand,
    .footer-column {
        min-width: 0;
        width: 100%;
    }
	
	.header h2 {
    margin: 60px 0 0 0;

    text-align: center;
    font-family: "Merriweather", serif;
    font-weight:lighter;
    font-size: 1.15rem;

    background: #b51f3e;
    border-bottom: 4px solid #eaadb2;
    outline: 8px solid #b51f3e;
    color: #eaadb2;
    padding: 20px 30px 10px 0;
}

.animation-gallery{

    margin-left: 0;
    display:grid;

    grid-template-columns:
        repeat(auto-fit, minmax(400px, 1fr));

    gap: 0px;


}

.animation-card{

    position:relative;

    display:block;

    overflow:hidden;

    /* border-radius:14px; */

    text-decoration:none;

    background:#000;

    aspect-ratio:16 / 9;

    transition:
        transform .25s ease,
        box-shadow .25s ease;

}

.animation-card video{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

    transition:
        transform .25s ease,
        filter .25s ease;

}
}