#logo {
    width: 150px;
    height: 150px;
}

.main {
    position: relative;
}

.aside .logo h1 {
    line-height: 1.25em !important;
}

.aside .logo {
    margin-bottom: 30px !important;
}

@media (max-width: 992px) {
    .aside .logo {
        margin-bottom: 0 !important;
    }
}

.video-fullscreen-wrap .frame-inner {
    width: 500px;
    text-shadow: 1px 1px 0 #000;
}

h1.heading {
    font-size: 48px;
    line-height: 1.25 !important;
}

p {
    font-size: 18px;
}

@media (max-width: 500px) {
    .video-fullscreen-wrap .frame-inner {
        width: 320px;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
}

.desktop-indicator {
    animation: bounceArrow 2s infinite ease-in-out;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
}

/* Mobile swipe icon (SVG only, no wrapper) */
.swipe-down-icon {
    animation: swipeDown 2s infinite ease-in-out;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

/* Arrow bounce */
@keyframes bounceArrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* Swipe down animation */
@keyframes swipeDown {
    0%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(10px);
    }
    70% {
        transform: translateY(5px);
    }
}

/* Shadow bounce effect for desktop */
@keyframes bounceWrapper {
    0%, 100% { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); }
    50% { box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25); }
}

/* Responsive visibility */
.desktop-indicator {
    display: none;
}

.mobile-indicator {
    display: flex;
}

@media (min-width: 992px) {
    .desktop-indicator {
        display: flex;
    }
    .mobile-indicator {
        display: none;
    }
}

.photos.moodboard a {
    max-width: 30%;
}

html[data-theme="light"] {
    #footer {
        padding: 60px;
        background: #ffffff;
    }
}

.aside .main-menu ul ul li a {
    line-height: 1.2;
}

@media (prefers-color-scheme: dark) {
    a.link {
        color: #ffffff;
    }
}

@media (prefers-color-scheme: light) {
    a.link {
        color: #000000;
    }
}