@font-face {
    font-family: 'Arial Rounded MT Bold';
    src: url('./fonts/arialroundedmtbold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Layout: make footer sit at bottom for short pages */
html, body {
    height: 100%;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.main {
    flex: 1 0 auto; /* allow main to grow and push footer down */
}

.sitename {
    font-family: 'Angstrom';
    
}

.navmenu a {
    font-family: 'Arial Rounded MT Bold', sans-serif;
    
}

.h2, .h3, h2, h3, .h4, h4 {
    font-family: 'Arial Rounded MT Bold', sans-serif;
    
}

.glightbox .glightbox-container .gdesc h4 {
    font-family: 'Arial Rounded MT Bold', sans-serif;
    
}

.hero .hero-panel {
    background: rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(8px) saturate(120%);
    backdrop-filter: blur(8px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    width: min(900px, 90%);
    min-height: 25rem;
    margin: 0 auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
    padding: 28px 24px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    
}


.hero.light-background .hero-panel,
.hero .hero-panel.light-background {
    background: rgba(255, 255, 255, 0.10);
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .hero .hero-panel {
        background: linear-gradient(to right, rgba(255,255,255,0.14), rgba(255,255,255,0.10));
        box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    }
}


@media (max-width: 575px) {
    .hero .hero-panel {
        width: calc(100% - 40px);
        padding: 18px;
        min-height: 10rem;
    }
}


.hero {
    background-image: url('../img/homepageasset.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }
}


.music-links { margin: 2.5rem 0 3.5rem; }
.music-btn {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transition: transform 180ms ease, box-shadow 180ms ease;
    overflow: hidden;
    background: #343434;
}
.music-btn img { width: 40px; height: 40px; display: block; filter: invert(1) saturate(0) brightness(2); }
.music-btn:hover, .music-btn:focus { transform: translateY(-3px) scale(1.03); box-shadow: 0 14px 36px rgba(0,0,0,0.16); outline: none; }
.music-btn.spotify, .music-btn.apple, .music-btn.soundcloud { background: #343434; }

@media (max-width: 575px) {
    .music-btn { width: 64px; height: 64px; }
    .music-btn img { width: 28px; height: 28px; }
}

/* Video embeds styling */
.portfolio-item .ratio iframe {
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.portfolio-item .portfolio-info { padding-top: 12px; }

